Here is your first code:
import matplotlib.pyplot as plt
x = [1,2,3]
y = [4,5,10]
fig, ax = plt.subplots()
ax.plot(x, y, linestyle = 'solid', color = 'black', marker = 'o')
And we are going to extend this code to a professional fashion througout this whole course.
Contents:
Chapter 01: Introduction
Chapter 02: Data Types
Chapter 03: DateTime/ Date / Time / TimeDelta
Chapter 04: Operators
Chapter 05: Math
Chapter 06: Control Flow - For Loops
Chapter 07: Control Flow - While Loops
Chapter 08: Control Flow - If...Else
Chapter 09: Control Flow - Break and Continue
Chapter 10: Try...Except...Finally
Chapter 11: Functions
Chapter 12: Classes / Objects
Chapter 13: File Handling
Chapter X: Must Learn Module 1: Numpy
Chapter X: Must Learn Module 2: Pandas
Chapter X: Must Learn Module 3: JSON
Chapter X: Must Learn Module 4: Matplotlib
Chapter X: Module 5: Web Request (Selenium, WebRequest, BeautifulSoup, Scrapy)
Chapter X: Module 6: Database (SQL Server)