Computer Science, asked by rahmanshakeel2001, 11 months ago

Write a simple python program to take input from user calculate it's the length and print it in abbreviation form with a full stop after each character

Answers

Answered by jai696
1

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

abbreviate = lambda s: ".".join(list(s)) + "."

print(abbreviate((s := input("string: "))))

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions