>>> a = '10'
>>> b = '20'
>>> a = a + b
>>> print(a)
Suppose list1 is [2, 33, 222, 14, 25], What is list1[-1]?
What is the output of the given code?
t=7.0/4.0 == 7/4
print(t)
import turtle
t=turtle.Pen()
t.right(90)
t.forward(100)
t.heading()
What is the output of the following Python statement?
print("abccccdefababbc".count("ab", 1))
What does os.link() do ?
What is the output of the given code?
def sign(n):
print(n)
sign(n='Abekus')
Which operator is used to check whether a particular element is present in a sequence or not?
What is the output of the given code?
string="{} {} {}".format('Abekus','learning','madefun')
print(string)
string="{1} {2} {0}".format('Abekus','learning','madefun')
print(string)