Hey everyone, today we are going to create a simple . Acronym Generator using Python How Do Acronym Generators work? So basically an Acronym Generator will take a String as an input and it will return the initials of all the words in the String. Let’s Code To get started, we need a phrase from the user. We can do that using the method. input() user_input = input( ) "Enter a phrase: " We have stored the user input in a variable. user_input Now we must ignore words like from the user input as most of the time, is not considered for acronyms. ‘of’ ‘of’ Also, we need to separate each word and store it individually in a form of a list so that we can easily iterate through it. phrase = (user_input.replace( , )).split() 'of' '' Here in we are using function to ignore 'of' from the input, if any. user_input.replace('of', '') .replace() And then we are using function to break down the string into individual words and store them as a list in variable. .split() phrase We are almost done! We need an empty string variable to store our acronym. Let’s quickly create one… acronym = "" Now let’s create a for loop which will iterate through the variable. phrase i phrase: acronym = acronym + word[ ].upper() for in 0 Here in , we are slicing off the first letter of words stored in using slicing operator and adding it to our variable. acronym = acronym + word[0] phrase acronym We are also using function to capitalize on the acronyms. .upper() Finally, just add a statement which will print out the acronym on the console. print print( ) f'Acronym of is ' {user_input} {a} Awesome now let’s try running our code with different inputs. Enter a phrase: machine learning Acronym of machine learning is ML Enter a phrase: artificial intelligence Acronym of artificial intelligence is AI Enter a phrase: federal bureau of investigation Acronym of federal bureau of investigation is FBI Source Code You can find the complete source code of this project here — mindninjaX/Python-Projects-for-Beginners Support Thank you so much for reading! I hope you found this beginner project useful. If you like my work please consider so that I can bring more projects, more articles for you. Buying me a Coffee Also if you have any questions or doubts feel free to contact me on , & . Or you can also post a comment/discussion & I will try my best to help you :D Twitter LinkedIn GitHub