Skip to content

Commit 02e4a9e

Browse files
committedDec 24, 2021
Added About task
1 parent c176ba1 commit 02e4a9e

File tree

4 files changed

+37
-0
lines changed

4 files changed

+37
-0
lines changed
 

‎Introduction/About/main.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
if __name__ == "__main__":
2+
# Write your solution here
3+
pass

‎Introduction/About/task-info.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
type: theory
2+
files:
3+
- name: main.py
4+
visible: true

‎Introduction/About/task.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## About the Course
2+
3+
Welcome to the course in basics of Python programming!
4+
5+
#### Why Learn Python?
6+
Python is one of the most popular programming languages in the world.
7+
Used extensively in data science, ML, and AI, Python is the fastest-growing major programming language.
8+
9+
It is a perfect starting point for getting acquainted with programming.
10+
Python is easier to read, write, and learn than most other programming languages.
11+
With Python you won’t get stuck on a simple beginner’s task.
12+
Python’s many forums, Q&A platforms, and supportive open-source community are invaluable resources to help keep you motivated as you learn.
13+
14+
#### Course Aims
15+
16+
After completing this course, you should be able to:
17+
18+
- understand and make use of basic programming concepts, such as variables, data structures, functions and classes;
19+
- read Python code;
20+
- write simple programs in Python;
21+
- work with Python modules and packages;
22+
- continue learning Python with other courses, offering more complex material.
23+
24+
#### Prerequisites
25+
26+
You don't need to have any previous experience in Python or programming in general
27+
to complete this course.
28+
29+
Good luck!

‎Introduction/lesson-info.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
content:
2+
- About
23
- Navigating Around
34
- Course View
45
- Editor

0 commit comments

Comments
 (0)
Please sign in to comment.