Quick actions

cmd+k|ctrl+k

Navigation

Languages

Air String

Snippet info

Language

Python

Visibility

public

Author

hohim4095

Created

2024-10-24T11:45:11.554752Z

Updated

2024-10-24T11:46:10.719955Z

def a():
    x=1
    print(f'hello {x}')
    return x
b=a()
print(b)
INFO