+ 1
To get notification with ***
Please, help to fix the code a = (“hello”) print = (“***”, a,”***”)
3 Respostas
+ 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 ?