forked from learnable-content/intro-to-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.txt
98 lines (62 loc) · 2.06 KB
/
links.txt
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
Chapter 1
Guido van Rossum
https://en.wikipedia.org/wiki/Guido_van_Rossum
Python Non-Programmer Beginner Guides
https://wiki.python.org/moin/BeginnersGuide/NonProgrammers
Python History and License
https://docs.python.org/3/license.html
Chapter 2
General Python FAQ
https://docs.python.org/3/faq/general.html#id2
Object-oriented programming
https://en.wikipedia.org/wiki/Object-oriented_programming
Stack Overflow 2020 Developer Survey
https://insights.stackoverflow.com/survey/2020#most-popular-technologies
CPython
https://en.wikipedia.org/wiki/CPython
Low-level programming
https://en.wikipedia.org/wiki/Low-level_programming_language#:~:text=A%20low%2Dlevel%20programming%20language,machine%20code%20or%20assembly%20language.
Chapter 3
Python Documentation
https://docs.python.org
Chapter 4
Pep8
https://www.python.org/dev/peps/pep-0008/
Chapter 5
Python Glossary
https://docs.python.org/3/glossary.html
Function Definition
https://docs.python.org/3.8/reference/compound_stmts.html#function-definitions
Docstring Conventions
https://www.python.org/dev/peps/pep-0257/#what-is-a-docstring
Chapter 6
Built-In Exceptions
https://docs.python.org/3/library/exceptions.html#bltin-exceptions
Stack Overflow
https://stackoverflow.com/questions/tagged/python
Chapter 9
Iterable
https://docs.python.org/3/glossary.html?highlight=scope#term-iterable
List Methods
https://docs.python.org/3/tutorial/datastructures.html
Chapter 10
Open Source Licenses
https://opensource.org/licenses
Chapter 11
PyCharm
https://www.jetbrains.com/pycharm/
Visual Studio Code
https://code.visualstudio.com/
Sublime Text
https://www.sublimetext.com/
Python Idle Documentation
https://docs.python.org/3/library/idle.html
Shebang Lines
https://docs.python.org/3/using/windows.html#shebang-lines
Virtual Environments
https://docs.python.org/3/tutorial/venv.html
Chapter 12
Relative and Absolute Paths
https://en.wikipedia.org/wiki/Path_(computing)#:~:text=in%20a%20path.-,Absolute%20and%20relative%20paths,provide%20the%20full%20absolute%20path.
CSV Module
https://docs.python.org/3/library/csv.html#id3