Quick actions

cmd+k|ctrl+k

Navigation

Languages

tuple_advantage

Snippet info

Language

Python

Visibility

public

Author

atkincheung

Created

2024-08-29T13:45:58.887578Z

Updated

2024-08-29T13:59:50.36806Z

def a():
    print('a')
def b():
    print('b')
    x=a,b
x=a,b
a=10
x[0]()
    
INFO