Skip to content

Instantly share code, notes, and snippets.

@cibofdevs
Last active September 19, 2022 13:08
Show Gist options
  • Save cibofdevs/f58a6296c5b4b539ddc46a91891dddac to your computer and use it in GitHub Desktop.
Save cibofdevs/f58a6296c5b4b539ddc46a91891dddac to your computer and use it in GitHub Desktop.
# 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)
@raviprakashram
Copy link

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