forked from GGC-SD/bash_basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlittleBuster.py
More file actions
69 lines (59 loc) · 1.81 KB
/
littleBuster.py
File metadata and controls
69 lines (59 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/bash
# read the name of the user and print hello
#echo "Hello! What is your name"
#read name
#echo "Welcome, $name"
# single quotes prevent the expansion of the variable
#echo 'Your name was stored in $name'
# exercise: write a script that asks the user for a
# filename and create an empty file named after it
#echo "Hey $name, What is your filename?"
#read filename
#echo "You want $filename"
#echo "Creating $filename ..."
#touch $filename
#echo "$filename creted"
#ls
#echo "Bye,bye"
# So I Love this song but the chorus is about more than
# 50% ao the song is the chorus and is japanese which I
# know a thing or two about I hope you listen to it.
#This is my first time using python and is not bad at all
#LITTLE BUSTERS by The Pillows
i = 0
while i < 2:
print("With the kids sing out the future")
print("Maybe, kids don't need the masters")
print("Just waiting for the little Busters")
print("OH YEAHHHHHH")
print(" ")
i+=1
print("YEAH YEAH YEAHHH!!!!")
print("色あせないキッドナップミュージック")
print("手と手が知っている")
print("同じドアをノックしたい")
print("この声が聞こえたら 飛び出して")
print(" ")
j = 0
while j < 3:
print("With the kids sing out the future")
print("Maybe, kids don't need the masters")
print("Just waiting for the little Busters")
print("OH YEAHHHHHH")
print(" ")
j+=1
print("YEAH YEAH YEAHHH!!!!")
print("はずれやすいティーンエイジ・ギア")
print("転がる日々も")
print("空と海と大地はただ")
print("あるがまま いつまでも逃げないぜ")
print(" ")
j = 0
while j < 4:
print("With the kids sing out the future")
print("Maybe, kids don't need the masters")
print("Just waiting for the little Busters")
print("OH YEAHHHHHH")
print(" ")
j+=1
print("YEAHHHH YEAHHH YEAHH!!!!....")