Skip to content

Instantly share code, notes, and snippets.

@Kimjunkuk
Created January 3, 2022 01:24
Show Gist options
  • Save Kimjunkuk/f6d9624a85216a9c4e009284a7c2aac5 to your computer and use it in GitHub Desktop.
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.
number = 1
while number in range (1,8):
print(number, end=" ")
number +=1
@mitj500
Copy link

mitj500 commented Jan 18, 2025

1 2 3 4 5 6 7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment