Quick actions

cmd+k|ctrl+k

Navigation

Languages

Data Types

Snippet info

Language

Python

Visibility

public

Author

vishshinde.345

Created

2026-08-12T17:33:35.257862Z

Updated

2026-08-13T07:31:03.847823Z

#fundamental data types
# int 
# float

# complex data type

# str
# bool
# list
# tuple
# set
# dict

#int and float
#print(type(6))  #6 is storing in memory
#print(type(2-4))
#print(type(2*4))
#print(type(2/4)) #0.5

#print (type(9.1+1.1))
# print (2**3)
# print (2//4)

# print(5%4)

#Math functions
# print(round(3.1))
# print(abs(-20))

#operator precedence
#print((20-3) + 2 ** 2)

# ()
# **
# * /
# + -

# print(bin(5)) 
# print(int('0b101', 2))
INFO