Acronyms
This Program name is Acronyms. Write a Python program to Acronyms, it has two test cases
The below link contains Acronyms question, explanation and test cases
https://docs.google.com/document/d/1tb9wBreT7FpfJwKOEYgFoR1RX-WY7KuD/edit?usp=sharing&ouid=104486799211107564921&rtpof=true&sd=true
We need exact output when the code was run
s=list(input().split())
ac=''
for st in s:
ac+=st[0].upper()+'.'
print(ac.rstrip('.'))
Comments
Leave a comment