@@ -5,28 +5,26 @@ Dumping ground for Python scripts
5
5
6
6
Some of this is from [ Derek Banas' video] ( https://www.youtube.com/watch?v=N4mEzFDjqtA&list=PLGLfVvz_LVvSX7fVd4OUFp_ODd86H0ZIY&index=3&t=0s ) , and some from [ learnpython.org] ( https://www.learnpython.org/ )
7
7
8
- [ variables.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/variables.py )
9
- [ lists.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/lists.py )
10
- [ tuples.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/tuples.py )
11
- [ sets.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/sets.py )
12
- [ dictionaries.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/dictionaries.py )
13
- [ conditionals.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/conditionals.py )
14
- [ loops.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/loops.py )
15
- [ functions.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/functions.py )
16
- [ user_input.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/user_input.py )
17
- [ strings.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/strings.py )
18
- [ file_io.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/file_io.py )
19
- [ numpy_test.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/numpy_test.py )
20
- [ pandas.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/pandas.py )
21
- [ generators.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/generators.py )
22
- [ list_comprehension.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/list_comprehension.py )
23
- [ exceptions.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/exceptions.py )
24
- [ json_serialisation.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/json_serialisation.py )
25
- [ partial_functions.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/partial_functions.py )
26
- [ closures.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/closures.py )
27
- [ decorators.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/decorators.py )
28
- [ map_filter_reduce.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/map_filter_reduce.py )
29
- [ anonymous_functions.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/anonymous_functions.py )
30
-
31
- ## Misc
8
+ * [ variables.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/variables.py )
9
+ * [ lists.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/lists.py )
10
+ * [ tuples.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/tuples.py )
11
+ * [ sets.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/sets.py )
12
+ * [ dictionaries.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/dictionaries.py )
13
+ * [ conditionals.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/conditionals.py )
14
+ * [ loops.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/loops.py )
15
+ * [ functions.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/functions.py )
16
+ * [ user_input.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/user_input.py )
17
+ * [ strings.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/strings.py )
18
+ * [ file_io.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/file_io.py )
19
+ * [ numpy_test.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/numpy_test.py )
20
+ * [ pandas.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/pandas.py )
21
+ * [ generators.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/generators.py )
22
+ * [ list_comprehension.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/list_comprehension.py )
23
+ * [ exceptions.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/exceptions.py )
24
+ * [ json_serialisation.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/json_serialisation.py )
25
+ * [ partial_functions.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/partial_functions.py )
26
+ * [ closures.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/closures.py )
27
+ * [ decorators.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/decorators.py )
28
+ * [ map_filter_reduce.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/map_filter_reduce.py )
29
+ * [ anonymous_functions.py] ( https://github.com/James-P-D/PythonDump/blob/master/src/PyApp/PyApp/anonymous_functions.py )
32
30
0 commit comments