This commit is contained in:
Oliver Hofmann 2024-07-19 11:52:44 +02:00
parent 96f35476df
commit 2b812ce89a
4 changed files with 12 additions and 0 deletions

View File

@ -9,4 +9,5 @@ def draw_square():
draw_square() draw_square()
sophia.screen.mainloop() sophia.screen.mainloop()

View File

@ -0,0 +1 @@
print('Hello World!')

View File

@ -0,0 +1,3 @@
for _ in range(100):
# print('Ich darf Sophia nicht umdrehen.')
print('Ich darf Sophia nicht umdrehen.', end=' ')

View File

@ -0,0 +1,7 @@
print(3 * 4 - 8 // 2)
print(3 * (4 - 8) // 2)
print(4.0 + 2)
print (4 * 2.0)
print(4 / 2)