Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- start = 0.1
- end = 100.01
- step = 0.1
- current_value = start
- while current_value <= end:
- print(current_value)
- current_value += step
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement