Quick actions

cmd+k|ctrl+k

Navigation

Languages

type converstion 

Snippet info

Language

Python

Visibility

public

Author

sermon0906

Created

2026-06-24T14:29:58.745395Z

Updated

2026-06-24T14:29:58.745395Z

age = 20 
name = 'sermon'
phone_no = '1234567'
print(type(age))
print(type(str(age)))
print(type(name))
print(type(int(phone_no)))
INFO