0
What happen if i don't use triple quote's in python and jus press enter.
print("Hello guys: how are you")
5 ответов
+ 2
Then you get an error because Python doesn't like a line ending before you close the quote :)
+ 2
strings must always be in quotes. otherwise, you will raise syntax errors in your code.
+ 1
could you please be more specific with the question
0
thanks everyone
0
you could do
print("Hello guys: \
how are you?")