Quick actions

cmd+k|ctrl+k

Navigation

Languages

exe-18

Snippet info

Language

Python

Visibility

public

Author

mahasocha

Created

2020-10-10T17:46:30Z

Updated

2020-10-11T18:25:05Z

#Fundamental data types
#int - integers-numbers - no decimal-places
#float- decimal numbers - and it take more spaces or memory 
print(2+4)
print(type(6))
print(type(2-4))
print(type(2*4))
print(type(2/4))

print(type(10.56))

print(2 ** 3)
print(5 // 4)
print( 5 % 4)   #moduler 


# 20-video- math functions
print(round(3.9))
print(abs(-20))

#21-video - developer fundamental --use google...to find key words to program
#22-video - # operator precedence
print((20-3) + 2 ** 2)


INFO