Created
January 3, 2022 01:24
-
-
Save Kimjunkuk/f6d9624a85216a9c4e009284a7c2aac5 to your computer and use it in GitHub Desktop.
1. Question 1 Fill in the blanks of this code to print out the numbers 1 through 7.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
number = 1 | |
while number in range (1,8): | |
print(number, end=" ") | |
number +=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1 2 3 4 5 6 7