From e50c56406bd2c9ccbe30375be09b8191448011f9 Mon Sep 17 00:00:00 2001 From: bodla sai <30978046+bodlasai@users.noreply.github.com> Date: Fri, 14 Dec 2018 20:17:28 +0530 Subject: [PATCH] Create strcat.py --- strcat.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 strcat.py diff --git a/strcat.py b/strcat.py new file mode 100644 index 0000000..39ff4fd --- /dev/null +++ b/strcat.py @@ -0,0 +1,4 @@ +a="sai " +b="hello" +c=",welcome to python 75 hackathon" +print(a+b+c)