From b206b2f9d28dcb8ce818132aa0e11dba9dc612bc Mon Sep 17 00:00:00 2001 From: martin-martin Date: Fri, 25 Oct 2024 14:32:02 +0200 Subject: [PATCH 1/3] Add code for Interacting With Python tutorial update --- interacting-with-python/README.md | 3 +++ interacting-with-python/hello.py | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 interacting-with-python/README.md create mode 100644 interacting-with-python/hello.py diff --git a/interacting-with-python/README.md b/interacting-with-python/README.md new file mode 100644 index 0000000000..2597e710aa --- /dev/null +++ b/interacting-with-python/README.md @@ -0,0 +1,3 @@ +# Interacting With Python + +This folder provides the code examples for the article [Interacting With Python](https://realpython.com/interacting-with-python/). diff --git a/interacting-with-python/hello.py b/interacting-with-python/hello.py new file mode 100644 index 0000000000..f04a16480f --- /dev/null +++ b/interacting-with-python/hello.py @@ -0,0 +1,4 @@ +greeting = "Hello, World!" +print(greeting) +print("Printing from a file.") + From 9a495ca6888fbf561c9ff9bab1fc3a19c21107c9 Mon Sep 17 00:00:00 2001 From: martin-martin Date: Fri, 25 Oct 2024 14:38:49 +0200 Subject: [PATCH 2/3] Remove newline --- interacting-with-python/hello.py | 1 - 1 file changed, 1 deletion(-) diff --git a/interacting-with-python/hello.py b/interacting-with-python/hello.py index f04a16480f..94742830bd 100644 --- a/interacting-with-python/hello.py +++ b/interacting-with-python/hello.py @@ -1,4 +1,3 @@ greeting = "Hello, World!" print(greeting) print("Printing from a file.") - From 400b250288ed766a07874c75a15e5ee487171a95 Mon Sep 17 00:00:00 2001 From: brendaweles <160772586+brendaweles@users.noreply.github.com> Date: Mon, 4 Nov 2024 10:12:41 -0700 Subject: [PATCH 3/3] Language Edit --- interacting-with-python/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interacting-with-python/README.md b/interacting-with-python/README.md index 2597e710aa..66f393d6e7 100644 --- a/interacting-with-python/README.md +++ b/interacting-with-python/README.md @@ -1,3 +1,3 @@ # Interacting With Python -This folder provides the code examples for the article [Interacting With Python](https://realpython.com/interacting-with-python/). +This folder contains the code examples for the [Interacting With Python](https://realpython.com/interacting-with-python/) tutorial.