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));