print(math.log(1024, 2))
a=[1,2,3,4]
b=[5,6,7,8]
c=a+b
print(c)
what is the output?
def add (x,y): print (x+y) result = add (2,3) print (result)
What will be the output of the following Python code?
a = [1, 2, 3, 4, 5]
a.mul()
print(a)
find the output:
var = 3 def func (x,y=var): print (x+y) var = 4 func (5)
What is the shortcut key in a Python programming Jupyter notebook to delete the current cell?
What is the correct code to create a Flask application in Python?
What is the output of the following program ?
sentence = "Python is a Programming Language"
words = sentence.split()
result = len(words) + len(set(words))
print(result)
Which of the following is true about Python?
which is the correct statement about the eval method in python?