Quick actions

cmd+k|ctrl+k

Navigation

Languages

Type Conversion

Snippet info

Language

Python

Visibility

public

Author

sasso

Created

2025-12-07T13:39:16.367131Z

Updated

2025-12-07T13:39:16.367131Z

a = str (100)
b = int(a)
c = type (b)
print (c) #stessa cosa

print(type(int(str(100)))) #stessa cosa
INFO