week-4 #5

Merged
Kenwood merged 12 commits from week-4 into master 2021-02-03 16:53:55 -05:00
1 changed files with 5 additions and 0 deletions
Showing only changes of commit ca1e52929c - Show all commits

5
4/4.2/4.2.3/main.py Normal file
View File

@ -0,0 +1,5 @@
user_num = int(input())
while user_num >= 1:
user_num = user_num / 2 # We operate on the value first, before printing it
print(user_num)