Quick actions

cmd+k|ctrl+k

Navigation

Languages

DicodingPy

Snippet info

Language

Python

Visibility

public

Author

saifudin.zezy7

Created

2020-04-07T06:16:45Z

Updated

2020-04-07T06:16:45Z

a = 5
print(a, "is of type", type(a))
a = 2.0
print(a, "is of type", type(a))
a = 1+2j
print(a, "is complex number?", isinstance(1+2j,complex))
INFO