0
as the example for string is given I'm not satisfied by that
as "+" symbol is used to add num 1 and 1 in the same way when I tried to use "×" symbol I'm getting the error .y so in this way >>>print(1 + ( 2 × 3 )) I'm getting the error I can't understand wts the logic
1 Antwort
+ 2
I guess by that you are trying to multiply a number in almost all programming languages . '*' is used for multiplication .
x is just a character. should be
print(1 + ( 2 * 3 ))