From ae31b2e876704214ac94d9b423328cdf130dcb37 Mon Sep 17 00:00:00 2001 From: Shakira Ndagire Date: Thu, 17 Oct 2019 01:01:45 +0300 Subject: [PATCH] Add hello word to Python folder --- Python/hello_world.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Python/hello_world.py diff --git a/Python/hello_world.py b/Python/hello_world.py new file mode 100644 index 0000000..b0891e5 --- /dev/null +++ b/Python/hello_world.py @@ -0,0 +1,4 @@ +hello = "Hello" +world = " World" + +print(hello + world) \ No newline at end of file