Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 416 Bytes

File metadata and controls

34 lines (24 loc) · 416 Bytes

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