What will be the input of this code??
3. a = b = 10
c, d = 2, 5
print (a, b, c, d)
print (a < = c)
print (b/c)
print (d * a)
print (a ** b)
print ("Python")
Answers
Answered by
0
Explanation:
any information or data sent to a computer for processing is considered input
Answered by
0
Answer:
The statement 'input' is used to tell the computer that the user must enter some data before the program can continue.
Similar questions