Skip to content

Commit 879ea28

Browse files
authored
Merge branch 'master' into expressions-vs-statements
2 parents 4e3d5bb + 214480e commit 879ea28

File tree

139 files changed

+3785
-225
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+3785
-225
lines changed

concurrency-overview/README.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

concurrency-overview/cpu_mp.py

Lines changed: 0 additions & 21 deletions
This file was deleted.

concurrency-overview/cpu_non_concurrent.py

Lines changed: 0 additions & 20 deletions
This file was deleted.

concurrency-overview/cpu_threading.py

Lines changed: 0 additions & 21 deletions
This file was deleted.

concurrency-overview/io_mp.py

Lines changed: 0 additions & 35 deletions
This file was deleted.

concurrency-overview/race_condition.py

Lines changed: 0 additions & 17 deletions
This file was deleted.

concurrency-overview/requirements.txt

Lines changed: 0 additions & 35 deletions
This file was deleted.

interacting-with-python/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Interacting With Python
2+
3+
This folder contains the code examples for the [Interacting With Python](https://realpython.com/interacting-with-python/) tutorial.

interacting-with-python/hello.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
greeting = "Hello, World!"
2+
print(greeting)
3+
print("Printing from a file.")

numpy-examples/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
These files are used in the tutorial [NumPy Practical Examples: Useful Techniques](https://realpython.com/numpy-example-useful-practical-techniques/).
2+
3+
The various csv files contain data that is uses to create and populate various NumPy arrays in both the main tutorial and in the various embedded exercises. The tutorial_code.ipynb is a Jupyter Notebook containing the code used in the tutorials.

0 commit comments

Comments
 (0)