str = "hope"
l = list(str)
print(l)
What is the output of the given code?
a=-5
b=4
mod=a%b;
print(mod)
Which of the following lines of code will result in an error?
Which of the following will print 'Abekus'?
What is the output of the given code?
a=True
b=False
print(a and b)
print(a or b)
In Flask, the url_for() function is used to build a dynamic URL for a specific function.
How can we convert Django models into other formats such as XML, JSON, etc.?
What is the output of the given code?
List=[]
print(List)
List=['Abekus']
print(list)
List=["Abekus","learning","madefun"]
print(List)