Can the keyword be used as a variable?
What type of data is: a=[(1,1),(2,4),(3,9)]?
Python keywords are in which case?
What is the output when we execute list(“hello”)?
What is the output of the given code?
def fun():
s=5
print(s)
s=10
fun()
print(s)
What will be the output of the following Python code?
x = 123
for i in x:
print(i)
What will be the output of the following Python code?
>>> a=(1,2,3,4)
>>> del a[2]
What does print(os.geteuid()) print?