Technical Publications

Write a python program that accepts a string from user and perform following string operations – i) Calculate length of string ii) String reversal. ... word=text.split() #creating a list of words. word = [w.replace('.', ',') for w in word]#searching dot from each word and replacing it by comma ................
................