Part 1: Introduction and Basics
1. Introduction to the Course
Lecture VideoCode Snippet
--NA--
2. Installations of Python and PyCharm
Lecture VideoCode Snippet
--NA--
3. Execution process of a Python Program
Lecture Video4. Expressions, Statements, and Comments
Lecture VideoCode Snippet
a = 10
b = 20
#Expressions examples
print(10+20)
print(2*(a+b))
print("Hello"+"world")
print(len("Hello"))
#Print expression statement demo
print("Python")
print(print("Python"))
#Finding the area of a circle
radius = 10
area = 3.14 * radius * radius
print(area) #Print area in the console
'''
This is an example of multiline comment
We are finding the area of a circle
'''
radius = 10
area = 3.14 * radius * radius
print(area) #Print area in the console