Quick actions

cmd+k|ctrl+k

Navigation

Languages

Data Types

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-01T16:42:52.595172Z

Updated

2025-11-01T16:42:52.595172Z

# #Fundamental Data Types
print(type(6))
print(type(2 - 4))
print(type(2 * 4))
print(type(2 / 4))
print(type(2.2 + 4))

print(2 ** 4)
print(18 // 4)
print(18 % 4)

# Math Function
print(round(3.5))
print(abs(-20))
INFO