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
1
abbreviate = lambda s: ".".join(list(s)) + "."
print(abbreviate((s := input("string: "))))
Similar questions