Advertisement
SansPapyrus683

Moon Weight Function

Jun 5th, 2022
1,367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. def moon_weight(starting_weight, weight_inc):
  2.     curr_weight = starting_weight
  3.     for x in range (0, 15):
  4.         curr_weight = curr_weight + weight_inc
  5.         print(curr_weight * 0.165)
  6.  
  7. moon_weight(30, 0.25)
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement