Generators can be created by using functions and the _______ statement.
What is the output of the given code?
a='Abekus'
b='Abekus'
print(a is not b)
What will be the output of the following Python functions?
x=3
eval('x^2')
What will be the value of x in the following Python expression?
x = int(43.55+2/2)
What will be the output of the following Python code?
import sys
sys.argv[0]
What is the output of the given code?
string="Abekus"
print(string)
del string[2]
print(string)
What will be the output of the following Python code?
>>>"Welcome to Python".split()