-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathDay013- Debugging
More file actions
96 lines (82 loc) · 2.18 KB
/
Day013- Debugging
File metadata and controls
96 lines (82 loc) · 2.18 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
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
############DEBUGGING#####################
# # Describe Problem
# def my_function():
# for i in range(1, 20):
# if i == 20:
# print("You got it")
# my_function()
# # The Solution
# def my_function():
# for i in range(1, 21):
# if i == 20:
# print("You got it")
# my_function()
# # Reproduce the Bug
# from random import randint
# dice_imgs = ["❶", "❷", "❸", "❹", "❺", "❻"]
# dice_num = randint(1, 6)
# print(dice_imgs[dice_num])
# # Solution
# from random import randint
# dice_imgs = ["❶", "❷", "❸", "❹", "❺", "❻"]
# dice_num = randint(1, 5)
# print(dice_imgs[dice_num])
# # 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:
# print("You are a Gen Z.")
# # Solution
# year = int(input("What's your year of birth?\n"))
# if year > 1980 and year < 1994:
# print("You are a millenial.")
# elif year >= 1994:
# print("You are a Gen Z.")
# # Fix the Errors
# age = input("How old are you?")
# if age > 18:
# print("You can drive at age {age}.")
# # Solution
# age = int(input("How old are you?"))
# if age > 18:
# print(f"You can drive at age {age}.")
# #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: "))
# total_words = pages * word_per_page
# print(total_words)
#Check with print
# pages = 0
# word_per_page = 0
# pages = int(input("Number of pages: "))
# word_per_page == int(input("Number of words per page: "))
# total_words = pages * word_per_page
# print(pages)
# print(word_per_page)
# print(total_words)
# Solution
# pages = 0
# word_per_page = 0
# pages = int(input("Number of pages: "))
# word_per_page = int(input("Number of words per page: "))
# total_words = pages * word_per_page
# print(total_words)
# #Use a Debugger
# def mutate(a_list):
# b_list = []
# for item in a_list:
# new_item = item * 2
# b_list.append(new_item)
# print(b_list)
# mutate([1,2,3,5,8,13])
# #Use a Debugger
def mutate(a_list):
b_list = []
for item in a_list:
new_item = item * 2
b_list.append(new_item)
print(b_list)
mutate([1,2,3,5,8,13])