forked from CinderZhang/FinnData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek1.html
100 lines (84 loc) · 4.21 KB
/
week1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Week 1: Introduction to Python and Setting Up the Environment</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
</head>
<body>
<!-- Add the Back to Home button at the bottom as well -->
<div class="back-to-home">
<a href="index.html">← Back to Home</a>
</div>
<div class="container">
<h2>Week 1: Introduction to Python and Setting Up the Environment</h2>
<h3>Learning Objectives:</h3>
<ul>
<li>Understand what Python is and its applications in financial data analysis.</li>
<li>Set up the Python development environment using Python and VS Code.</li>
<li>Create a GitHub repository for hosting the course materials.</li>
</ul>
<h3>Materials:</h3>
<h4>1. Introduction to Python</h4>
<ul>
<li>What is Python? </li>
<li>Why use Python for financial data analysis?</li>
</ul>
<a href="https://www.python.org/about/" target="_blank">Read more about Python</a>
<h4>2. Installing Python and Setting Up the Development Environment</h4>
<ul>
<li> Downloading and installing Python.</li>
<li> Introduction to Python and its features.</li>
<li>Setting up VS Code as the code editor.
<br> And register/sign up for GitHub Copilot
<br> And set up GitHub Copilot for VS Code</li>
</ul>
<a href="https://docs.Python.com/Python/install/" target="_blank">Python Installation Guide</a><br>
<a href="https://code.visualstudio.com/download" target="_blank">VS Code Installation Guide</a>
<h4>3. Introduction to GitHub Repository</h4>
<ul>
<li>What is a GitHub Repository? </li>
<li>Creating a GitHub account and a new repository for hosting the course materials.</li>
</ul>
<a href="https://docs.github.com/en/get-started/quickstart/create-a-repo" target="_blank">GitHub Repository Guide</a>
<h4>4. Hello World in Python</h4>
<ul>
<li>Writing your first Python program.</li>
<li>Running the program.</li>
<li>Understanding the output.</li>
</ul>
<h3>Exercises:</h3>
<ol>
<li>Install Python and VS Code on your system.</li>
<li>Create a GitHub repository and familiarize yourself with its features.</li>
<li>Write a simple Python program that prints "Hello, World!" and run it using Python.</li>
<li>Write a simple Python program that multiply 2 numbers and print out the result and run it using Python.</li>
<li>Prompt ChatGPT to advance your Python skills in your own pace.</li>
</ol>
</div>
<h3>Reminder:</h3>
<div id="ChatGPT Lead deep dive">
<h3>Every Week: Personalized Python Learning with ChatGPT Plus--10 or More prompts/convesations required on each topic</h3>
<p>Use the PROMPT to personalize your learning experience with ChatGPT Plus</p>
<a href="https://github.com/JushBJJ/Mr.-Ranedeer-AI-Tutor">ChatGPT Lead deep dive</a>
</div>
<div id="ChatGPT Assignment">
<h3>Every Week: Test your knowledge of Python weekly topics On ChatGPT Plus</h3>
<p>Use the PROMPT to test your knowledge and grade it by ChatGPT</p>
<a href="https://github.com/CinderZhang/FinnData/blob/main/chatGPT_AssignmentSample.md">ChatGPT Assignment</a>
</div>
<div style="text-align: center; margin-top: 20px;">
<a href="index.html">← Previous Week</a>
|
<a href="week2.html">Next Week →</a>
</div>
<!-- Add the Back to Home button at the bottom as well -->
<div class="back-to-home">
<a href="index.html">← Back to Home</a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</body>
</html>