Python
Python copied to clipboard
Today i practise python #whileloop #just beginning Python easy to understand so start with python
is_failed = True i = 1
while is_failed and i<=100: print(f"Try{i}") i=i+1
print("i gave up")