Quick actions

cmd+k|ctrl+k

Navigation

Languages

float

Snippet info

Language

Python

Visibility

public

Author

kwongtkkenny

Created

2025-06-24T08:22:08.110339Z

Updated

2025-06-24T08:22:08.110339Z

def a(x : float , y : float) -> float:
    return x + y
print(a('1',2))
INFO