+ 1
Give me the solution of this error?
a=hello hi bye. b=buddies print(a) print(b)
3 odpowiedzi
+ 2
You didn't put your string in quotation marks. You have to do:
a = "hello hi bye"
(or)
a = 'hello hi bye'
+ 2
a="hello hi bye"
or
a='hello hi bye'
And you made the same mistake for b value also
0
ThanQ