We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44824a9 commit c254b5dCopy full SHA for c254b5d
Complete Python Mastery[MH]/04- Function/9. Debugging.py
@@ -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