-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
65 lines (51 loc) · 1.59 KB
/
Copy pathmain.py
File metadata and controls
65 lines (51 loc) · 1.59 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
import random
############DEBUGGING#####################
# 1. Describe Problem
def my_function():
# for i in range(1, 20): <-- cause error
for i in range(1, 21):
if i == 20:
print("You got it")
my_function()
# 2. Reproduce the Bug
# from random import randint
dice_imgs = ["❶", "❷", "❸", "❹", "❺", "❻"]
# dice_num = randint(1, 6) <-- cause error
dice_num = random.randint(0, 5)
print(dice_imgs[dice_num])
# 3. Play Computer
year = int(input("What's your year of birth?"))
if year > 1980 and year < 1994:
print("You are a millenial.")
# elif year > 1994: <-- cause error
elif year >= 1994:
print("You are a Gen Z.")
# 4. Fix the Errors
# age = input("How old are you?") <-- cause error
age = int(input("How old are you?"))
if age > 18:
# print("You can drive at age {age}.") <-- cause error
print(f"You can drive at age {age}.")
# 5. Print is Your Friend
pages = 0
word_per_page = 0
pages = int(input("Number of pages: "))
# word_per_page == int(input("Number of words per page: ")) <-- cause don't work expected
word_per_page = int(input("Number of words per page: "))
print(f"pages = {pages}")
print(f"word_per_page = {word_per_page}")
total_words = pages * word_per_page
print(total_words)
# 6. Use a Debugger
def mutate(a_list):
b_list = []
for item in a_list:
new_item = item * 2
b_list.append(new_item)
# b_list.append(new_item) <-- don't work expected
print(b_list)
mutate([1, 2, 3, 5, 8, 13])
# 7. Take a Break
# 8. Ask a Friend
# 9. Run Code Often - Build Small to Large
# 10. Ask StckOverflow(https://stackoverflow.com/)