diff --git a/interacting-with-python/README.md b/interacting-with-python/README.md new file mode 100644 index 0000000000..66f393d6e7 --- /dev/null +++ b/interacting-with-python/README.md @@ -0,0 +1,3 @@ +# Interacting With Python + +This folder contains the code examples for the [Interacting With Python](https://realpython.com/interacting-with-python/) tutorial. diff --git a/interacting-with-python/hello.py b/interacting-with-python/hello.py new file mode 100644 index 0000000000..94742830bd --- /dev/null +++ b/interacting-with-python/hello.py @@ -0,0 +1,3 @@ +greeting = "Hello, World!" +print(greeting) +print("Printing from a file.")