Create 1 - Countup.py

This commit is contained in:
Lukas Baumann 2021-02-18 18:55:58 +01:00 committed by GitHub
parent ef89326224
commit 79787f418e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

5
07/c/1 - Countup.py Normal file
View File

@ -0,0 +1,5 @@
x = 1
while x <= 10:
print(x)
x += 1
print("Blastoff!")