Quick actions

cmd+k|ctrl+k

Navigation

Languages

Scoping 7

Snippet info

Language

Python

Visibility

public

Author

petersnpan2047

Created

2026-05-04T07:11:38.733761Z

Updated

2026-05-04T07:12:05.857886Z

def func(x,y):
    return x * y    # operator overload
print(func("z",2))
print(func(2,2))
INFO