Python
Python copied to clipboard
I also whileloop With different type and small logics #engineerin_in_kannada
is_failed = True i = 1
while is_failed : if i%2!=0 : i=i+1 continue print(f"Try{i}") i=i+1
if i>100 :
break
print("i gave up")