Quick actions

cmd+k|ctrl+k

Navigation

Languages

Day1.1

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-10T02:51:32.72502Z

Updated

2026-07-10T02:51:48.636137Z

# # Fundamental Data Types
# print(2+4)
# print(2-4)
# print(2*4)
# print(2/4)
# print(2**3)
# print(5//2)
# print(5%2)

# print(type(2+4))
# print(type(2-4))
# print(type(2*4))
# print(type(2/4))
# print(type(9.9+1.1))

# math function
print(round(3.1))
print(round(3.9))
print(abs(-20))
INFO