diff --git a/4-loops/20_99_bottles.py b/4-loops/20_99_bottles.py index 38d7eb3..44546ab 100644 --- a/4-loops/20_99_bottles.py +++ b/4-loops/20_99_bottles.py @@ -2,7 +2,4 @@ # Codédex for i in range(99, 0, -1): - print(f'{i} bottles of beer on the wall') - print(f'{i} bottles of beer') - print('Take one down, pass it around') - print(f'{i-1} bottles of beer on the wall') + print(f'{i} bottles of beer on the wall \n{i} bottles of beer \nTake one down, pass it around')