From acc2ba11ec77d2863a3d2e176f6b1405eb889c90 Mon Sep 17 00:00:00 2001 From: David Ikhalea Date: Tue, 19 Aug 2025 20:11:11 +0100 Subject: [PATCH] Update 20_99_bottles.py --- 4-loops/20_99_bottles.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/4-loops/20_99_bottles.py b/4-loops/20_99_bottles.py index 38d7eb3..13622cf 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 \n{i} bottles of beer \n \nTake one down, pass it around \n ")