Write the output of the given Python code : print (3 + 4) print (3 – 4) print (3 * 4) print (3/4) print (3 % 2) print (3**4)
Write the output of the given Python code :
print (3 + 4)
print (3 – 4)
print (3 * 4)
print (3/4)
print (3 % 2)
print (3**4) #3 to the fourth power
print (3 // 4) #floor division
4 views