Block comments should have one space before the pound sign (#) and the comment itself.

Anti-pattern

#This comment needs a space
def print_name(self):
    print(self.name)

Best practice

# Comment is correct now
def print_name(self):
    print(self.name)