What is the value returned by ceil(3.4)
Python is an ------------ language
sorted() changes the original list in python, true or false?
Deduce the output of the following code:
x=25
y=range(0,x,3)
print(len(y))
What will be the output of the following Python expression?
print(4.00/(2.0+2.0))
Find the output of the following code:
tuple=(1,2,3,4,5)
tuple[1]+=tuple[2]
print(tuple[1])
Given the code:
y = 15
if (int(y/10) == 0):
x = ' '
else:
x = int(y/10)
print("{}{}".format(x, y%10))
What will be the output?
What will be the output of the following Python code if the system date is 21st June, 2017 (Wednesday)?
tday=datetime.date.today()
print(tday.isoweekday())
What is the output of the following code?
a = "Python is easy to code"
x = a.startswith('Python')
print(x)
y = a.startswith('p')
print(y)