Advertisement
Nenogzar

Untitled

Oct 16th, 2023
1,097
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. start = 0.1
  2. end = 100.01
  3. step = 0.1
  4.  
  5. current_value = start
  6. while current_value <= end:
  7.     print(current_value)
  8.     current_value += step
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement