-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.py
44 lines (37 loc) · 1023 Bytes
/
debug.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
############DEBUGGING#####################
# # Describe Problem
# 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(0, 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.")
# # Fix the Errors
# 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)
#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])