Find the output of the following code:
d={'a':1,'b':2,'c':3, 'd':4}
print(d.get('e',1))
What is the output of the following Python code?
z = "xyz"
for i in z:
print(i + '1')
Which of the following is not a declaration of the dictionary?
Which function is used to dynamically build a URL for a specific route in Flask?
What is the output of the following code?
from math import *
x = e
print(x)
Which of the following is not the correct syntax for creating a set?
What will be the output of the following code?
x='Abekus'
w="ABEKUS"
print(x.islower())
print(w.isupper())
What is the output of the given code?
tuple=('Abekus',)*4
print(tuple)
In PyQt terminology, what is a signal?
Which of the following will throw an error if used after the following Python code?
tday = datetime.date.today()
bday = datetime.date(2017, 9, 18)
t_day = bday - tday