
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
Please answer quickly
In python
![Write a Python program that prompts the user to enter a sequence of lowercase words and stores in a list
only those words whose first letter occurs again elsewhere in the word (e.g., "baboon"). Continue
entering words until the user enters an empty string ("", not " "), at which point your program should
print the list.
You may want to create a helper function (a function that accomplishes some smaller part of your main
task) that takes in a single string, and returns True if the first letter is repeated, or False otherwise.
You could use a loop to do this, but you may also want to consider just using slicing and the in keyword,
or the .count method.
Be sure to use an appropriate while condition here: while(True) might work in this case but it's bad style.
Example:
Enter a word: im
Enter a word: a
Enter a word: member
Enter a word: of
Enter a word: the
Enter a word: imperial
Enter a word: senate
Enter a word: on
Enter a word: a
Enter a word: diplomatic
Enter a word: mission
Enter a word: to
Enter a word: alderaan
Enter a word:
['member', 'imperial', 'alderaan']](https://content.bartleby.com/qna-images/question/6fd040ed-6213-4a28-abb8-fabaa799ea1a/dcf3f33c-3669-4c26-af0e-62c5d32f4b7a/swdk7kk_thumbnail.jpeg)
Transcribed Image Text:Write a Python program that prompts the user to enter a sequence of lowercase words and stores in a list
only those words whose first letter occurs again elsewhere in the word (e.g., "baboon"). Continue
entering words until the user enters an empty string ("", not " "), at which point your program should
print the list.
You may want to create a helper function (a function that accomplishes some smaller part of your main
task) that takes in a single string, and returns True if the first letter is repeated, or False otherwise.
You could use a loop to do this, but you may also want to consider just using slicing and the in keyword,
or the .count method.
Be sure to use an appropriate while condition here: while(True) might work in this case but it's bad style.
Example:
Enter a word: im
Enter a word: a
Enter a word: member
Enter a word: of
Enter a word: the
Enter a word: imperial
Enter a word: senate
Enter a word: on
Enter a word: a
Enter a word: diplomatic
Enter a word: mission
Enter a word: to
Enter a word: alderaan
Enter a word:
['member', 'imperial', 'alderaan']
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Python code that accepts the lengths of three sides of a triangle and indicates whether or not the triangle is a right trianglearrow_forwardHow do users and programmers normally work together?arrow_forwardCode in C language. Follow instructions in photo. Use text provided as input.txt file. A1, A2 20294 Lorenzana Dr Woodland Hills, CA 91364 B1, B2 19831 Henshaw St Culver City, CA 94023 C1, C2 5142 Dumont Pl Azusa, CA 91112 D1, D2 20636 De Forest St Woodland Hills, CA 91364 A1, A2 20294 Lorenzana Dr Woodland Hills, CA 91364 E1, E2 4851 Poe Ave Woodland Hills, CA 91364 F1, F2 20225 Lorenzana Dr Los Angeles, CA 91111 G1, G2 20253 Lorenzana Dr Los Angeles, CA 90005 H1, H2 5241 Del Moreno Dr Los Angeles, CA 91110 I1, I2 5332 Felice Pl Stevenson Ranch, CA 94135 J1, J2 5135 Quakertown Ave Thousand Oaks, CA 91362 K1, K2 720 Eucalyptus Ave 105 Inglewood, CA 89030 L1, L2 5021 Dumont Pl Woodland Hills, CA 91364 M1, M2 4819 Quedo Pl Westlake Village, CA 91362 I1, I2 5332 Felice Pl Stevenson Ranch, CA 94135 I1, I2 5332 Felice Pl Stevenson Ranch, CA 94135 N1, N2 20044 Wells Dr Beverly Hills, CA 90210 O1, O2 7659 Mckinley Ave Los Angeles, CA 90001arrow_forward
- Where should I utilize dynamic versus static typing?arrow_forwardfast in python thanksarrow_forwardUse python please You are the manager of a £100 million portfolio, and you have 6 investment options: - First Mortgages: return 9% and risk score 3- Second Mortgages: return 12% and risk score 6- Personal Loans: return 15% and risk score 8- Commercial Loans: return 8% and risk score 2- Government Securities: return 6% and risk score 1- Saving Account: return 3% and risk score 0 The current regulation requires that the amount allocated in second mortgages and personal loans (combined) should not exceed the amount allocated in first mortages. Given this information: a) Ignoring the risk involved in the different investment options, what is the profit maximizing allocation of resources? What are the expected profits? b) Now, you have to consider the risk associated with the investments. The average risk of your portfolio cannot exceed 5. What is the profit maximizing allocation of resources? What are the expected profits?arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education