Answer in Python for Isabel Cortez #251662

Activity #5 – Applying Functions The output of this activity will be the same as activity #3 but instead you are required to use a function for the following algorithm:

1. A function for getting the length of each string

2. A function to get the shortest string

3. And a function to get the longest string Assume that each string has its own unique length.

Sample Run:

Sample Run A

Enter value of X: 3

Enter string value: a

Enter string value: ab

Enter string value: abc

a – total length is 1

ab – total length is 2

abc – total length is 3

The shortest string is a

The longest string is abc

Sample Run B

Enter value of X: 4

Enter string value: chico

Enter string value: strawberry

Enter string value: banana

Enter string value: guyabano

chico – total length is 5

strawberry – total length is 10

banana – total length is 6

guyabano – total length is 8

The shortest string is chico

The longest string is strawberry

CODE FOR THE QUESTION

#A function for getting the length of a string
def string_length(my_string):
    return len(my_string)

#A function to get the longest string
def shortest_string(my_length_list, my_strings_list):
    shortest_lengthr = my_length_list[0]
    index_for_shortest = 0;
    for element in my_length_list:
        if element < shortest_lengthr:
            shortest_lengthr = element
            index_for_shortest = my_length_list.index(element)

    return my_strings_list[index_for_shortest]

#A function to get the longest string
def longest_string(my_length_list, my_strings_list):
    longest_length = my_length_list[0]
    index_for_longest = 0;
    for element in my_length_list:
        if element > longest_length:
            longest_length = element
            index_for_longest = my_length_list.index(element)

    return my_strings_list[index_for_longest]

#Prompt the user to enter the number of strings
x = int(input("Enter value of X: "))

#Declare a list to store the strings
my_string_list = []
#Declare a list to store the lengths of the strings
my_string_list_lengths = []
#Prompt the user to enter all the strings
for i in range(0,x):
    my_string = input("Enter string value ")
    my_string_list.append(my_string)
    #append the length to the length list
    my_string_length = string_length(my_string)
    my_string_list_lengths.append(int(my_string_length))

#Print all the strings with their length
for element in my_string_list:
    print(element+" - Total length is "+str(string_length(element)))

print("nThe shortest string is "+shortest_string(my_string_list_lengths,my_string_list))
print("The longest string is "+longest_string(my_string_list_lengths,my_string_list))

Calculate the price
Make an order in advance and get the best price
Pages (550 words)
$0.00
*Price with a welcome 15% discount applied.
Pro tip: If you want to save more money and pay the lowest price, you need to set a more extended deadline.
We know how difficult it is to be a student these days. That's why our prices are one of the most affordable on the market, and there are no hidden fees.

Instead, we offer bonuses, discounts, and free services to make your experience outstanding.
How it works
Receive a 100% original paper that will pass Turnitin from a top essay writing service
step 1
Upload your instructions
Fill out the order form and provide paper details. You can even attach screenshots or add additional instructions later. If something is not clear or missing, the writer will contact you for clarification.
Pro service tips
How to get the most out of your experience with TheBestPaperWriters
One writer throughout the entire course
If you like the writer, you can hire them again. Just copy & paste their ID on the order form ("Preferred Writer's ID" field). This way, your vocabulary will be uniform, and the writer will be aware of your needs.
The same paper from different writers
You can order essay or any other work from two different writers to choose the best one or give another version to a friend. This can be done through the add-on "Same paper from another writer."
Copy of sources used by the writer
Our college essay writers work with ScienceDirect and other databases. They can send you articles or materials used in PDF or through screenshots. Just tick the "Copy of sources" field on the order form.
Testimonials
See why 20k+ students have chosen us as their sole writing assistance provider
Check out the latest reviews and opinions submitted by real customers worldwide and make an informed decision.
Nursing
The paper was EXCELLENT. Thank you
Customer 452449, September 23rd, 2022
Psychology
Thanks a lot the paper was excellent
Customer 452453, October 26th, 2022
Business Studies
Job well done. Finish paper faster than expected. Thank you!
Customer 452451, October 3rd, 2022
English 101
Very good job. I actually got an A
Customer 452443, September 25th, 2022
Architecture, Building and Planning
The assignment was well written and the paper was delivered on time. I really enjoyed your services.
Customer 452441, September 23rd, 2022
Anthropology
Excellent services will definitely come back
Customer 452441, September 23rd, 2022
Theology
Job well done and completed in a timely fashioned!
Customer 452451, November 18th, 2022
Anthropology
excellent loved the services
Customer 452443, September 23rd, 2022
Public Administration
Excellent timely work
Customer 452451, April 19th, 2023
Business Studies
Excellent service - thank you!
Customer 452469, February 20th, 2023
Business Studies
Thank you!
Customer 452451, November 27th, 2022
11,595
Customer reviews in total
96%
Current satisfaction rate
3 pages
Average paper length
37%
Customers referred by a friend
OUR GIFT TO YOU
15% OFF your first order
Use a coupon FIRST15 and enjoy expert help with any task at the most affordable price.
Claim my 15% OFF Order in Chat