help me design a For loop that displays the following set of numbers: 0, 10, 20, 30, 40, 50......1000

scru commented: That's just lazy -1
leegeorg07 commented: work it out yourself, try a counter +0

Moved this question from the "Starting Python" Read Me Sticky.
Reasons are the sticky rules:
The idea of this thread is to help the beginning Python programmer with hints and helpful code. Please feel free to contribute! If you have any questions start your own thread!

range(0, 1010, 10)

Better, with "real" for loop

for i in range(0,1):
  print(range(0,1010,10))

Or:

for i in range(0,1010,10):
  print(i)
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.