Robotics & Artificial Intelligence
Related Questions
Predict the data type of the given Python statement:
m=12E4 print(type(m))Predict the data type of the given Python statement:
p='10' print(type(int(p)))Predict the output of the following code:
def Add(num1, num2): sum = num1 + num2 sum = Add(20, 30) print(sum)Predict the output of the following code:
def Sum(a, b): return a+5, b*5 # main program result = Sum(4, 5) print(result)