From ce7e89f675f1537b4af760fc663158444beb5443 Mon Sep 17 00:00:00 2001 From: bodla sai <30978046+bodlasai@users.noreply.github.com> Date: Fri, 14 Dec 2018 20:24:15 +0530 Subject: [PATCH] Create strlen.py --- strlen.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 strlen.py diff --git a/strlen.py b/strlen.py new file mode 100644 index 0000000..98f6b6b --- /dev/null +++ b/strlen.py @@ -0,0 +1,8 @@ +a="sai" +b="hello" +c=",welcome to python 75 hackathon" +l=a+b+c +print(a,"=" ,len(a)) +print(b,"=" ,len(b)) +print(c,"=" ,len(c)) +print("total string length =",len(l));