find the error
Number =input (''number'')
sqr =number *number
Answers
Answered by
0
Answer:
input(type)
Explanation:
input(type), type can be int, float
Answered by
0
Corrected Statement:
number = int(input("Number - "))
sqr = number * number
Explanation:
We can't multiply str data type to an non-int data type.
Similar questions