coding practice-8 Get link Facebook X Pinterest Email Other Apps April 05, 2022 write a program to print the individual character of the word separated by -(hypen). a=input() l=len(a) b=a[0] for i in range(1,l): b=b + "-" + a[i] print(b) Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment