From 5947bc8ed7f97085f3dc08a8833c0ed1af5472ca Mon Sep 17 00:00:00 2001 From: deusdiasaleftis <73426052+deusdiasaleftis@users.noreply.github.com> Date: Tue, 3 Nov 2020 15:10:36 +0200 Subject: [PATCH] Create join_strings.py --- scripts/join_strings.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 scripts/join_strings.py diff --git a/scripts/join_strings.py b/scripts/join_strings.py new file mode 100644 index 0000000..549f67e --- /dev/null +++ b/scripts/join_strings.py @@ -0,0 +1,4 @@ +string1 = "Linux" +string2 = "Hint" +joined_string = string1 + string2 +print(joined_string)