Skip to content

Commit c254b5d

Browse files
# 9. Debugging >> creating bugs and fixing it using debug in pycharm
1 parent 44824a9 commit c254b5d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# 9. Debugging
2+
3+
# how to create a bug and debug it in python
4+
def multiply(*numbers):
5+
total = 1
6+
for number in numbers:
7+
total*=number
8+
return total
9+
print("Start")
10+
print(multiply(1,2,3))

0 commit comments

Comments
 (0)