print(3*3(2*2)) show error , why? In python3 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

print(3*3(2*2)) show error , why? In python3

25th Aug 2019, 4:40 AM
Pushkar Singh Bisht
Pushkar Singh Bisht - avatar
2 Answers
+ 5
Because 3*3(2*2) is not a thing. You need an operator between the second 3 and (.
25th Aug 2019, 4:46 AM
David Ashton
David Ashton - avatar
+ 1
Use print(3*3*(2*2))..... This will work most probably
25th Aug 2019, 5:42 AM
Dope Tube
Dope Tube - avatar