Python break and continue | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Python break and continue

16th Sep 2020, 5:00 PM
NaveenKumar R.K
4 Answers
+ 3
NaveenKumar R.K Is this your problem or asking question and giving self answer for badge.
16th Sep 2020, 5:59 PM
A͢J
A͢J - avatar
0
month = int(input('enter month in number : ')) day = 1 while day <= 31: if month == 2 and day > 28: break if month == [ 1,3,5,7,10,12 ] and day > 31: day + 1 continue if month == [4,6,9,11] and day > 30: day += 1 continue print (day) day += 1
16th Sep 2020, 5:01 PM
NaveenKumar R.K
0
Run this program
20th Sep 2020, 2:43 PM
NaveenKumar R.K
0
Hi. Please what's wrong with this code ? total = 0 #your code goes here i=1 while i < 6: age = int(input()) if age <= 3: continue elif age > 3: total += 100 print(total) i = i + 1 print(total)
21st Sep 2023, 6:43 AM
Moctar Kamakaté NAMADOU
Moctar Kamakaté NAMADOU - avatar