Quick actions

cmd+k|ctrl+k

Navigation

Languages

My first pythen error

Snippet info

Language

Python

Visibility

public

Author

nmtang59

Created

2024-08-02T03:37:37.174562Z

Updated

2024-08-02T13:25:24.496039Z

def a():
    print(" i am funtion A")
    return b
def b():
    print ("I am funtion B")
    return a
print (a()())    
    




    
INFO