basic-python-course Week 1 How to print to standard output print('what to print') How to write comments Single Line # this is a single line comment. Multi Line ''' this is a multiline comment. ''' How to declare variables a = 'some text' # declare a string variable b = 123 # an integer c = True # a boolean