1
0

initial file upload

This commit is contained in:
mlot
2025-05-09 10:12:44 -04:00
parent 61bf543133
commit 40e9918df0
22 changed files with 215 additions and 1 deletions

7
chap2/numbers.py Normal file
View File

@@ -0,0 +1,7 @@
print(2*4)
print(16/2)
print(9-1)
print(5+3)
my_fav_num = 7
print(f"My favorite number is {my_fav_num}")