Q1-Indentify the error-
x=10
print(x)
a=hello
print(a*4)
it's of python
Answers
Answered by
2
Explanation:
The variable "hello" is a string and not a integer so u cannot perform any calculation with a string, so that's why you are getting some problems.
Similar questions