top of page
learn_data_science.jpg

Data Scientist Program

 

Free Online Data Science Training for Complete Beginners.
 


No prior coding knowledge required!

Acronym generator from words or phrases

Updated: Oct 29, 2021

Generally, an acronym generator will take as an input a string and will return all the first elements of words in the string as an uppercase.




The first thing to do is asking the user to enter a phrase using input() method in python 
user_input = input("Enter a phrase: ")

We have now store the phase into our variable user_input. After that, we are going to separate each word and store in a list such that we can easily iterate through. The list is assign to the variable phrase

phrase = user_input.split()

Now we need to create our variable acronym as an empty string.

acronym = ""

By using a for loop, we will loop our new variable word through our list phrase.


for word in phrase:
    acronym = acronym + word[0].upper()

With acronym + word[0] we are slicing and assigning to our variable acronym which is at the beginning an empty string the first letter of the word store in phrase and using .upper() we are changing the letter into capital letter to form the acronym.

print("The acronym for your phrase is ",acronym + ".")

The print function will print out our acronym.


Let us try it out.

Enter a phrase: Artificial Intelligence
The acronym for your phrase is  AI.

 
 
 

Comentarios


COURSES, PROGRAMS & CERTIFICATIONS

 

Advanced Business Analytics Specialization

Applied Data Science with Python (University of Michigan)

Data Analyst Professional Certificate (IBM)

Data Science Professional Certificate (IBM)

Data Science Specialization (John Hopkins University)

Data Science with Python Certification Training 

Data Scientist Career Path

Data Scientist Nano Degree Program

Data Scientist Program

Deep Learning Specialization

Machine Learning Course (Andrew Ng @ Stanford)

Machine Learning, Data Science and Deep Learning

Machine Learning Specialization (University of Washington)

Master Python for Data Science

Mathematics for Machine Learning (Imperial College London)

Programming with Python

Python for Everybody Specialization (University of Michigan)

Python Machine Learning Certification Training

Reinforcement Learning Specialization (University of Alberta)

Join our mailing list

Data Insight participates in affiliate programs and may sometimes get a commission through purchases made through our links without any additional cost to our visitors.

bottom of page