From ddb65890661fa841ecc7ec9b8b98fed77c08c64a Mon Sep 17 00:00:00 2001 From: Yash Krishan Verma Date: Sun, 15 Oct 2017 12:43:22 +0530 Subject: [PATCH] Hello World in Python 2 and 3 --- hello_world/hello_world_py2.py | 1 + hello_world/hello_world_py3.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 hello_world/hello_world_py2.py create mode 100644 hello_world/hello_world_py3.py diff --git a/hello_world/hello_world_py2.py b/hello_world/hello_world_py2.py new file mode 100644 index 000000000..f4da9afa4 --- /dev/null +++ b/hello_world/hello_world_py2.py @@ -0,0 +1 @@ +print "Hello World!" diff --git a/hello_world/hello_world_py3.py b/hello_world/hello_world_py3.py new file mode 100644 index 000000000..599863043 --- /dev/null +++ b/hello_world/hello_world_py3.py @@ -0,0 +1 @@ +print ("Hello World!")