Last active
September 19, 2022 13:08
-
-
Save cibofdevs/f58a6296c5b4b539ddc46a91891dddac to your computer and use it in GitHub Desktop.
This file contains 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
# Write code to create a list of numbers from 0 to 67 and assign that list to the variable nums. Do not hard code the list. | |
nums = list(range(0, 68)) | |
print(nums) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nums=list(range(0, 68))
print(nums)