Quick actions

cmd+k|ctrl+k

Navigation

Languages

Def & return

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-11-27T09:49:00.117514Z

Updated

2024-11-27T09:51:58.153057Z

def a():
    x=1
    print(x)
    return x+1
print(a())
x=a()
print(x)

INFO