10/15/22

Acronyms.py

A project to help create acronyms to any sentence passed into the software.

Explanations of the lines
#1 is a comment
#3 receives an input by passing the input function and uses the strip function to remove any whitespace
#5 uses the split function to create a new list which contains the contents of the received input separated at every space
#9 - #10 takes the first letter of every content of the list and saves it into a string 

Blog Archive