Quick actions

cmd+k|ctrl+k

Navigation

Languages

Number type

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-04T09:39:02.42065Z

Updated

2024-12-04T09:39:02.42065Z

a,b,c,d=20,5.5,True,4+3j
print(type(a),type(b), type(c), type(d))
INFO