Quick actions

cmd+k|ctrl+k

Navigation

Languages

cond2

Snippet info

Language

Python

Visibility

public

Author

count-francis

Created

2025-09-09T04:13:03.596502Z

Updated

2025-09-09T04:13:03.596502Z

#city = None and 0 and {} and '' and Flase and []
#print(city)
#age =70
#is_number =True
#if age>=60:
#    if is_number:
#       print("30% senior discount")
#    else:
#       print("")
x=10
def a(y):
    if y:
        print("hello")
        return 1
    else:
        print("false")
while(a(x)):
    if x==5:
       x =x-1
       continue
    #if x==4:
     #  break
    print(x)
    x=x-1
else:
    print("normal exit of the while loop")
print("after while")
        
INFO