0
What is wrong here??
x=3 if x == 3; print("Yes") else; print("No")
3 Answers
+ 1
Use colons instead of semi-colons
+ 1
The mistake is the semicolon after if and else statement => replace it with ":". You can see the right code here
https://code.sololearn.com/cwHXRti3tsVN/?ref=app
0
Syntax errors,
X = 3
If(X == 3)
Printf("yes");
Else
Printf("No");