While I am developing the Python code, I found I used to use single quotation marks all the time, but some experienced programmers used double quotation marks more often. I couldn't find the difference between them, could anyone help to give me some examples if there is a difference? Or is it just a personal preference? For example:
class TextBox(UIControl):
def draw(self):
print('TextBox')
class TextBox2(UIControl):
def draw(self):
print("TextBox")
class TextBox and TextBox2 seems like have no difference while running. Thanks for your help!