What will be the output of the following Python statement?
>>>"abcd"[2:]
import sys
eval(sys.stdin.readline())
"Abekus"
What arithmetic operators cannot be used with strings?
a={1:"A",2:"B",3:"C"}
What will be the output of the following code?
print(a.get(1,4))
What is the output of the following Python code?
print(12/5)
print(12//5)
What will be the output of the following Python code?
>>> a,b=6,7
>>> a,b=b,a
>>> a,b
What will be the output of the following Python code snippet?
a={1:"A",2:"B",3:"C"}
print(a.get(1,4))
What is used in Django to store arbitrary information about the user on the server in the database?
What will be the output of the following Python code snippet?
k = [print(i) for i in my_string if i not in "aeiou"]
OnSite
1 Openings
FullTime
Posted 17 days ago