SyntaxFix
Write A Post
Hire A Developer
Questions
Use print("use this bracket -sample text")
print("use this bracket -sample text")
In Python 3 print "Hello world" gives invalid syntax error.
print "Hello world"
To display string content in Python3 have to use this ("Hello world") brackets.
("Hello world")