We start with "hello world", like all programming lanaguages; we start with telling the console to do something, cause-and-effect
print()
Output: PyCode 1
Code Snippet - Other
Opening to the Intro, introduction for Python. Covering terminal, what is Python used for? Using PyCharm, Python Online or Jupyter
print("")
print(a + b)
Output: PyCode 1
Code Snippet - Other
Opening about Python Syntax
"""" /
print(a + b)
print(a + b)
Output: PyCode 1
Code Snippet - Other
Opening about Python comments, both single line and multi-line commenting.
""" This is a multiline comment within Python
Choose to use the 'double quotations for mutli-line comments"""
/This is a single line comment
Output: PyCode 1
Code Snippet - Other
Opening about Python comments, both single line and multi-line commenting.
""" This is a multiline comment within Python
Choose to use the 'double quotations for mutli-line comments"""
/This is a single line comment
Output: PyCode 1
Code Snippet - Other