From 1b2f8c9fd792bed60df7af4b00f0a60c51c05f42 Mon Sep 17 00:00:00 2001 From: Vishnu Raj <92755633+vishnuvrj7@users.noreply.github.com> Date: Fri, 21 Mar 2025 23:21:49 +0530 Subject: [PATCH] Update 20_99_bottles.py made it simple --- 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..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')