SyntaxError: invalid syntax Error in Python zendnwar November 27, 2013 Python 0 Comments This very simple mistake. just write print (“Hello, World!”); Hope you will enjoy Related Posts Method overloading example in python admin February 25, 2018 class Localbus: def sayLocal(self, busName=None): if busName is not None: print('Hello ' + busN .. Difference between lamda and def in Python zendnwar March 18, 2016 def can contain multiple expressions whereas lamda is a single expression function def creates ..