Quick actions

cmd+k|ctrl+k

Navigation

Languages

Hey

Snippet info

Language

Python

Visibility

public

Author

rajatalhafarooq2

Created

2025-04-13T09:18:55.712613Z

Updated

2025-04-13T09:51:11.383322Z

# name = input('what is your name?')
# print('helooo' +  name)

# # Funamental data types
# int
# float
# bool
# str
# list
# tuple
# set
# dict

# #classes -> custom types

# #specialized data types

# None

# int & float
# print (type(9*2))
# print (type(2+33))
# print (type(22-4))
# print (type(1/3))
# print (type(0.223232))
# print(22)
# print (type(11.1+0.9)) #float
# print (4**4) # powerof
# print (2//4) #rounded off (returns int)
# print (5%4) #modulo (whats with the remainder of the division )

INFO