+ 1
To get notification with ***
Please, help to fix the code a = (âhelloâ) print = (â***â, a,â***â)
3 Answers
+ 3
Aleksandr Kapustin ,
the code uses invalid characters for quotes.
it uses â but should use "
+ 2
Do you need the brackets with "hello"?
If not, please try by removing the brackets
a = ("hello") ----> a = "hello"
a = "hello"
print("***", a, "***")
0
Is it code or pseudo code ?
Which language is used ?