Quick actions

cmd+k|ctrl+k

Navigation

Languages

Data Types

Snippet info

Language

Python

Visibility

public

Author

descent-casts.5m

Created

2025-12-06T11:18:02.930698Z

Updated

2025-12-13T10:07:12.304645Z

#Fundamental Data Types
#int and float
print(type(2+4))
print(type(2-4))
print(type(2*4))
print(type(2/4))

print(2**3) # 2 to the power 3
print(2//4) # floor division. divides left operand by right and returns quotient as int. and rounds down to the nearest integer
print(6%4) #6 modulo 4. gives remainder of the division.
print(bin(5))
print(int('0b101',2)) #where '2' is base 2.
INFO