Python
Python copied to clipboard
Today i practise pyhton programing language using whileloop How to use #if and #else in while loops #engineering_in_kannada
is_failed = input("enter yes to continue: ") i = 0
while is_failed=="yes": if i%2!=0: i+=1 print(f"attempt{i}") continue
if i > 100:
break