x=9
y=x//2
print(y)
Which of the following Python statements will raise an error?
What is the output of given program?
j=1
while(j<=5):
print(j)
j=j+2
What will be the output of the following Python functions?
chr(‘97’)
chr(97)
What does SDI stand for?
Which company developed PyQt?
What will be the output of the following Python code?
>>>example = "snow world"
>>>example[3] = 's'
>>>print example
What is the output of the given code?
print("Abekus",end="")
print("Abekus")
What is the correct syntax of the file.readlines() function?
def func(message, num = 1):
print(message * num)
func('Welcome')
func('Viewers', 3)