Can I make a list of numbers from 1 to 6 in one line without a loop?
goal:
[1,2,3,4,5,6]
Yes, use:
range(1,7)
that should do it.
Use the range builtin.
range
range(1, 7)
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
112 times
active