This commit is contained in:
Liam Waldron 2023-06-07 10:55:07 -04:00
commit 8e419439ec
4 changed files with 16 additions and 0 deletions

2
1.py Normal file
View File

@ -0,0 +1,2 @@
print("hi")
print("buddy")

4
2.py Normal file
View File

@ -0,0 +1,4 @@
x = 5
y = 10
print(x + y)

6
3.py Normal file
View File

@ -0,0 +1,6 @@
print(5 + 10)
print(5 - 10)
print(5 * 10)
print(5 / 10)
print(5 % 10)

4
4.py Normal file
View File

@ -0,0 +1,4 @@
x = 6
if x == 5:
print("True")