Quick actions

cmd+k|ctrl+k

Navigation

Languages

20241129 def & python to byte code

Snippet info

Language

Python

Visibility

public

Author

henryting

Created

2024-11-29T02:01:31.566105Z

Updated

2024-12-01T11:46:18.050291Z

# def a(w,x,y,z):
#     return (x+y)
# i=(1,2,3,4)
# print(i)
# print(a)
# print(a())









#Logic Practise
#print(print('x'))
#print(print('???'))
city=''
city=city or print('please input city') and print('test') or 'kn'
#city2=print('city2')
#city3=city2 + city
print(city)
#print(city3)


#def a():
#    print('this is a')
#    x=10
    
#print(a())



    
INFO