30-Days-Of-Python
30-Days-Of-Python copied to clipboard
30 days of Python programming challenge is a step-by-step guide to learn the Python programming language in 30 days. This challenge may take more than100 days, follow your own pace. These videos may...
# Arithmetic Operations in Python # Integers print('Addition: ', 1 + 2) # 3 print('Subtraction: ', 2 - 1) # 1 print('Multiplication: ', 2 * 3) # 6 print ('Division:...
Excelente repositório sobre python para quem está começando!!!
 The circled area in the screenshot can be understood as starting from index 0 with a length of 3
- Fixed typo errors - language fault - corrected exercices numbering - fixed error with examples codes
list_of_lists =[[[1, 2, 3]], [[4, 5, 6]], [[7, 8, 9]]] output [1, 2, 3, 4, 5, 6, 7, 8, 9] There are too many [ ] New variant: list_of_lists =...
enumerate example was missing the f in the print statement leading it not to actually show the output that the github page shows for index, i in enumerate(countries): print('hi') if...
Changed a grammatical error on line 157. "This formatting is introduced in Python version 3" to "This format was introduced in Python version 3"