Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

+# introduction +# Day 1 - 30daysofpython challenge + + +# Day 1 - 30daysofpython challenge +print(2+3) #addition(+) +print(3-2) #subtraction(-) +print(32) #multiplication() +print(3/2) #division (/) +print (32) #exponentiation () +print (3%2) #modulus (%) +print (3//2) #floor division (//) + +print (type (10)) # Int +print (type (3.14)) # Float +print(type (1 + 3j) # Complex +print (type ('Asabeneh' )) # String +print (type ([1, 2, 3])) # List +print (type({ 'name': 'Asabeneh'})) # Dictionary +print(type ({9.8, 3.14, 2.73)) # Set +print(type((9.8, 3.14, 2.7)) # Tuple +print (type (3 == 3) # Bool +print(type (3 >= 3) # Bool +result = 3 > 2 +print(result)

About

Futuremap Fellowship

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors