a = 8.6
b = 2
print a//b
from math import *
a = 2
b = 13
pow(a, b)
>>>x = abs(-7.25)
>>>y = abs(7.25)
>>>print(x, y)
What will be the output of the following Python statement?
>>> print('x\97\x98')
What will be the output of the following Python code?
print("ab\tcd\tef".expandtabs(4))
Find the output of the following code:
l = [1, 2, 22, 44]
a = 2
b = 4
c = b * 10 + a ** a not in l
print(c)
What will be the output of the following Python code?
What is the output of the following code?
x = 40.0
y = 4
z = y * 10
if x > z:
print('x > z')
if x == 40:
print('x == 40')
if z == x:
print(z)
else:
print('y')
Given the following code:
l1 = [1, 2, 3, 4, 5]
l2 = l1
l1.append(6)
print(l1)
print(l2)