-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathwhile_loops.py
132 lines (87 loc) · 3.59 KB
/
while_loops.py
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#********************************************************************
#
# Team Edge Mini-project: WHILE LOOP CHALLENGES
#
# Complete the following loop challenges below. Follow the ToDos
# 1. IN YOUR PRIME: Declare a while loop that prints all the prime
# numbers between 0 and 100 (use the helper function provided)
# 2. FOUND: use a while loop to search the contents of a list for
# the key!
# 3. BUGGIN: Find out why these while loops don't do what they say
# they do.
# 4. MATH QUIZ: Prompt a user to solve a random math problem, if
# they get it right, say congrats, if not, keep prompting.
# 5. WHAT AM I: Write a game loop that prompts that never stops
# asking, "Iknow you are a _____, but what am I?"
#
# ***************************************************************/
print("------------------- CHALLENGE 1 : IN YOUR PRIME -------------------")
#Here is a humble while loop in action. We need a variable to hold the counter value.
num = 0
while num <= 10:
print("example counter--> " + str(num))
num += 1
#------------ Helper function, do not mess with this part below ---------------??
def test_prime(n):
if n==1:
return False
elif n == 2:
return True
else:
for x in range(2, n-1):
if n % x == 0:
return False
return True
#-->TODO: Declare a while loop that prints all the prime numbers between 0 and 100, use test_prime() helper function
print("------------------- CHALLENGE 2 : FOUND -------------------")
#here is a list full of items
items = ["pencil" , "eraser" , "mirror" , "comb" , "spoon" , "key" , "earrings" ,"cat food" , "magazine"]
#-->TODO: Use a while loop to search the contents of a list for the key! If it exists, print "found the key!"
print("------------------- CHALLENGE 3 : BUGGIN -------------------")
#Oh no! these functions have loops that don't do what they say they should do. Can you fix that?
#One more thing...to stop an infite loop you hit Control + C in the terminal
#-->TODO: Make me count 2, 4, 6,..., 50
def even_numbers_to_fifty():
num = 50
while num < 50:
print("number: " + str(num))
even_numbers_to_fifty()
#-->TODO: Make this design below
#
# [ 0 ]
# [ 0, 1 ]
# [ 0, 1, 2 ]
# [ 0, 1, 2, 3 ]
# [ 0, 1, 2, 3, 4 ]
# [ 0, 1, 2, 3, 4, 5 ]
# [ 0, 1, 2, 3, 4 ]
# [ 0, 1, 2, 3 ]
# [ 0, 1, 2 ]
# [ 0, 1 ]
# [ 0 ]
def pattern():
index = 0
my_list =[]
while index <= 5:
my_list.append(index)
print(my_list)
index += 1
pattern()
print("------------------- CHALLENGE 4 : MATH QUIZ -------------------")
#-->TODO: Make a Math Quiz that asks two random numbers (between 0 and 100 to make it easy).
# The user enters the answer. If wrong, keep prompting. If correct, say congrats!!
# Use this handy boolean to get you started! You will need input()!
is_correct = False
print("------------------- CHALLENGE 5 : WHAT AM I? -------------------")
#-->TODO: Write a game loop that prompts that never stops asking, "I know you are a _____, but what am I?"
# You are given two starter functions and a loop to get started!
# Notice how one function calls the other and uses the returned value as the input. This is called Recursion!
keep_asking = False
def prompt_user():
pass
def response(response):
pass
while keep_asking:
#response(prompt_user())
pass
#-->TODO: Challenge! write a secret word to break out of the loop!