-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.html
More file actions
67 lines (64 loc) · 2.67 KB
/
python.html
File metadata and controls
67 lines (64 loc) · 2.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<a href="index.html">Return to HOME.</a>
<header>
<h1>Introduction to Python</h1>
</header>
<section>
<h2>Course Overview</h2>
<p>Learn how to program in Python. This is an introduction to programming course, learn concept of python and implement
it in real life problems through programs.
</p>
</section>
<section>
<h2>Syllabus</h2>
<p>
Introduction to Computer Programming, Basics of Python Programming Language, Variables
and Assignments, Function calls, User-defined functions, Scripts and Modules, Specification,
Testing, Strings, Conditionals, Sequences, For loops,While loops, Python Memory, Errors and Asserts, Error
Handling, Recursion, Nested Lists, Dictionaries.
</p>
</section>
<section>
<h2>Faculty</h2>
<ul>
<li>prof. Dr. Kushal Shah</li>
</ul>
</section>
<section>
<h2>Learning Outcome</h2>
<ul>
<li>Understand the basic concept of computer programming.</li>
<li>Understand and apply conditional statements to solve problems.</li>
<li>Understand and use various variable types and data structures in Python.</li>
<li>Understand and apply loops to solve problems.</li>
<li>Understand and apply functions to solve problems.</li>
<li>Understand and apply various useful programming practices.</li>
<li>Understand the real life problems through programming</li>
<li>Understand the mathematical concept in programs</li>
</ul>
</section>
<section>
<h2>Additional Reference (ONLINE)</h2>
<a href="https://www.cs.cornell.edu/courses/cs1110/2022fa/"> CS 1110 Fall 2022 (Cornell)</a><br>
<a href="https://www.py4e.com/lessons">Python for Everybody (PY4E)</a><br>
<a href="https://www.geeksforgeeks.org/python-programming-language-tutorial/">Geeks For Geeks</a><br>
<a href="https://medium.com/@atmabodha/python-programming-practice-problems-54bcf8c8eef1"> Python program practice problems</a>
</section>
<section>
<h2> Assessment Structure</h2>
<ul>
<li>Continuous Assessment: 20 Marks</li>
<li>Internal Assessment Tests (IA): 30 Marks</li>
<li>End-Term Exam: 50 Marks</li>
</ul>
</section>
</body>
</html>