SlideShare a Scribd company logo
1 of 3
Download to read offline
covert to BASH
name_list =[ 'Constance Castillo', 'Kerry Goodwin', 'Dorothy Carson', 'Craig Williams', 'Daryl
Guzman', 'Sherman Stewart', 'Marvin Collier', 'Javier Wilkerson', 'Lena Olson', 'Claudia George',
'Erik Elliott', 'Traci Peters', 'Jack Burke', 'Jody Turner', 'Kristy Jenkins', 'Melissa Griffin', 'Shelia
Ballard', 'Armando Weaver', 'Elsie Fitzgerald', 'Ben Evans', 'Lucy Baker', 'Kerry Anderson',
'Kendra Tran', 'Arnold Wells', 'Anita Aguilar', 'Earnest Reeves', 'Irving Stone', 'Alice Moore',
'Leigh Parsons', 'Mandy Perez', 'Rolando Paul', 'Delores Pierce', 'Zachary Webster', 'Eddie Ward',
'Alvin Soto', 'Ross Welch', 'Tanya Padilla', 'Rachel Logan', 'Angelica Richards', 'Shelley Lucas',
'Alison Porter', 'Lionel Buchanan', 'Luis Norman', 'Milton Robinson', 'Ervin Bryant', 'Tabitha
Reid', 'Randal Graves', 'Calvin Murphy', 'Blanca Bell', 'Dean Walters', 'Elias Klein', 'Madeline
White', 'Marty Lewis', 'Beatrice Santiago', 'Willis Tucker', 'Diane Lloyd', 'Al Harrison', 'Barbara
Lawson', 'Jamie Page', 'Conrad Reynolds', 'Darnell Goodman', 'Derrick Mckenzie', 'Erika Miller.,
'Tasha Todd', 'Aaron Nunez', 'Julio Gomez', 'Tommie Hunter', 'Darlene Russell', 'Monica Abbott',
'Cassandra Vargas', 'Gail Obrien', 'Doug Morales', 'Ian James', 'Jean Moran', 'Carla Ross',
'Marjorie Hanson', 'Clark Sullivan', 'Rick Torres', 'Byron Hardy', 'Ken Chandler', 'Brendan Carr',
'Richard Francis', 'Tyler Mitchell', 'Edwin Stevens', 'Paul Santos', 'Jesus Griffith', 'Maggie
Maldonado', 'Isaac Allen', 'Vanessa Thompson', 'Jeremy Barton', 'Joey Butler', 'Randy Holmes',
'Loretta Pittman', 'Essie Johnston', 'Felix Weber', 'Gary Hawkins', 'Vivian Bowers', 'Dennis
Jefferson', 'Dale Arnold', 'Joseph Christensen', 'Billie Norton', 'Darla Pope', 'Tommie Dixon',
'Toby Beck', 'Jodi Payne', 'Marjorie Lowe', 'Fernando Ballard', 'Jesse Maldonado', 'Elsa Burke',
'Jeanne Vargas', 'Alton Francis', 'Donald Mitchell', 'Dianna Perry', 'Kristi Stephens', 'Virgil
Goodwin', 'Edmund Newton', 'Luther Huff', 'Hannah Anderson', 'Emmett Gill', 'Clayton Wallace',
'Tracy Mendez', 'Connie Reeves', 'Jeanette Hansen', 'Carole Fox', 'Carmen Fowler', 'Alex Diaz',
'Rick Waters', 'Willis Warren', 'Krista Ferguson', 'Debra Russell', 'Ellis Christensen'. 'Freda
Johnston'. 'Janis Carpenter'. 'Rosemarv Sherman'. Ln1,Col1
"Joey Butler", "Randy Holmes", "Loretta Pittman", "Essie Johnston", "Felix Weber", "Gary
Hawkins", "Vivian Bowers", "Dennis Jefferson", "Dale Amold", "Joseph Christensen", "Billie
Norton", "Darla Pope", "Tommie Dixon", "Toby Beck", "Jodi Payne", "Marjorie Lowe",
"Fernando Balland", "Jesse Maldonado", "Elsa Burke", "Jeanne Vargas", "Alton Francis",
"Donald Mitchel1', "Dianna Perry", "Kristi Stephens", "Virgil Goodwin", "Edmund Newton",
"Luther Huff", "Hannah Anderson', "Emmett Gi11", "Clayton Wallace", "Tracy Mendez",
"Connie Reeves", "Jeanette Hansen", "Carole Fox", "Carmen Fowler", "Alex Diaz", "Rick
Waters", "Willis Warren", "Krista Ferguson", "Debra Russell', "El1is Christensen", "Freda
Johnston', "Janis Carpenter', "Rosemary Sherman", "Earnest Peters", "Kelly West", "Jorge
Caldwell', 'Moses Norris", "Erica Riley", "Ray Gordon", "Abel Poole', "Cary Boone', "Grant
Gomez", "Denise Chapman', "Vernon Moran', 'Ben Walker', "Francis Benson", "Andrea
Sullivan', "Wayne Rice", "Jamie Mason", "Jane Figueroa", "Pat Wade", "Rudy Bates", "Clyde
Harris', "Andre Mathis", "Carlton Oliver', "Merle Lee', 'Amber wright', "Russell Becker",
"Natalie Wheeler', "Maryann Miller", 'Lucia Byrd', "Jenny Zimmerman", "Kari Mccarthy",
"Jeannette Cain', "Ian Walsh", "Herman Martin', "Ginger Farmer', "Catherine Williamson',
'Lorena Henderson', "Molly Watkins", 'Sherman Ford', "Adam Gross", "Alfred Padi1la',
"Dwayne Gibson", "Shawn Ha11", "Anthony Rios', 'Kelly Thomas', "A1lan Owens", "Duane
Malone,", "Chris George', Dana Holt', "Muriel Santiago", "Shelley Osborne', "Clinton Ross',
'Kelley Parsons', "Sophia Lewis", "Sylvia Cooper", "Regina Aguilar', 'Sheila Castillo', "Sheri
Mcdonald', "Lynn Hodges", 'Patrick Medina', "Arlene Tate', "Minnie Weber', "Geneva Pena',
'Byron Collier', 'Veronica Higgins', "Leo Roy", "Nelson Lopez'] #These are my functions def
option_1 (): #Lookup by first name first_name_counter =0 first_name_begins_with = input
("InWhat letter does the first name begin with? ") first_name_begins_with =
first_name_begins_with. upper() Ln 1, Col 1
'Minnie Weber', 'Geneva Pena', 'Byron Collier', 'Veronica Higgins', 'Leo Roy', 'Nelson Lopez']
#These are my functions def option_1 (): #Lookup by first name first_name_counter =0
first_name_begins_with = input( 'nWhat letter does the first name begin with? ')
first_name_begins_with = first_name_begins_with.upper() print() for i in name_list: if
i.startswith(first_name_begins_with): print(i) first_name_counter +=1 if first_name_counter ==0
: print('No first names were found starting with the letter ' + first_name_begins_with. upper())
def option_2(): #Lookup by last name counter =0 last_name_begins_with = input ( 'InWhat
letter does the last name begin with? ") last_name_begins_with = last_name_begins_with.
upper() print() for i in name_list: name_split =i.split() if
name_split[1].startswith(last_name_begins_with): print(name_split [1]++ name_split []) counter
+=1 if counter ==0 : print ('No last names were found starting with the letter ' +
last_name_begins_with.upper()) def option_3(): #Add a name new_first_name = input ( 'InEnter
the new first name: ') new_last_name = input ('Enter the new last name: ') new_name =
new_first_name.title ()++ new_last_name.title () name_list. append (new_name) nuint 1.1n &
nomo 1ic+111. hac hoan ordad. 1
ile True: print( ease select from the following options: 1. List all first names beginning with a
chosen letter 2. List all last names beginning with a chosen letter 3. Add a name 4. Delete a name
5. Exit user_menu_choice = input ('Option#: ') if user_menu_choice == ' 1 ': option_1() continue
elif user_menu_choice == ' 2 ' : option_2() continue elif user_menu_choice ==3 : option_3()
continue elif user_menu_choice == ' 4 ' : option_4() continue elif user_menu_choice == ' 5 ' :
break else: print("  That is not a valid option. Please try again.") continue

More Related Content

More from info145003

2. Assume the readings on thermometers are normally distributed with.pdf
2. Assume the readings on thermometers are normally distributed with.pdf2. Assume the readings on thermometers are normally distributed with.pdf
2. Assume the readings on thermometers are normally distributed with.pdfinfo145003
 
2. An ecologist claims that because of environmental influences, the.pdf
2. An ecologist claims that because of environmental influences, the.pdf2. An ecologist claims that because of environmental influences, the.pdf
2. An ecologist claims that because of environmental influences, the.pdfinfo145003
 
2. Assess some of the challenges of service design.I need a full p.pdf
2. Assess some of the challenges of service design.I need a full p.pdf2. Assess some of the challenges of service design.I need a full p.pdf
2. Assess some of the challenges of service design.I need a full p.pdfinfo145003
 
2. Between February 2008 and Summer 2009 the Fed supplemented its op.pdf
2. Between February 2008 and Summer 2009 the Fed supplemented its op.pdf2. Between February 2008 and Summer 2009 the Fed supplemented its op.pdf
2. Between February 2008 and Summer 2009 the Fed supplemented its op.pdfinfo145003
 
2. Assume that each year the IRS randomly audits 3 of the tax retur.pdf
2. Assume that each year the IRS randomly audits 3 of the tax retur.pdf2. Assume that each year the IRS randomly audits 3 of the tax retur.pdf
2. Assume that each year the IRS randomly audits 3 of the tax retur.pdfinfo145003
 
2. As we get started with this disscussion, I want us to define leve.pdf
2. As we get started with this disscussion, I want us to define leve.pdf2. As we get started with this disscussion, I want us to define leve.pdf
2. As we get started with this disscussion, I want us to define leve.pdfinfo145003
 
2. A study by the Information Technology department at WPU revealed .pdf
2. A study by the Information Technology department at WPU revealed .pdf2. A study by the Information Technology department at WPU revealed .pdf
2. A study by the Information Technology department at WPU revealed .pdfinfo145003
 
2. A researcher has reason to believe that, for an experiment with 5.pdf
2. A researcher has reason to believe that, for an experiment with 5.pdf2. A researcher has reason to believe that, for an experiment with 5.pdf
2. A researcher has reason to believe that, for an experiment with 5.pdfinfo145003
 
2. Assume that the mean SAT score in Mathematics for 11th graders ac.pdf
2. Assume that the mean SAT score in Mathematics for 11th graders ac.pdf2. Assume that the mean SAT score in Mathematics for 11th graders ac.pdf
2. Assume that the mean SAT score in Mathematics for 11th graders ac.pdfinfo145003
 
2. Describe what is measured by the estimated standard error in the .pdf
2. Describe what is measured by the estimated standard error in the .pdf2. Describe what is measured by the estimated standard error in the .pdf
2. Describe what is measured by the estimated standard error in the .pdfinfo145003
 
2. Decide whether the distribution is a probability distribution. If.pdf
2. Decide whether the distribution is a probability distribution. If.pdf2. Decide whether the distribution is a probability distribution. If.pdf
2. Decide whether the distribution is a probability distribution. If.pdfinfo145003
 
2. a- What is a Junk Bondb- What is a debentureSolution.pdf
2. a- What is a Junk Bondb- What is a debentureSolution.pdf2. a- What is a Junk Bondb- What is a debentureSolution.pdf
2. a- What is a Junk Bondb- What is a debentureSolution.pdfinfo145003
 
2. A political party sends a mail survey to 1500 randomly selected r.pdf
2. A political party sends a mail survey to 1500 randomly selected r.pdf2. A political party sends a mail survey to 1500 randomly selected r.pdf
2. A political party sends a mail survey to 1500 randomly selected r.pdfinfo145003
 
2. A media consulting company installs software on the set-top box.pdf
2. A media consulting company installs software on the set-top box.pdf2. A media consulting company installs software on the set-top box.pdf
2. A media consulting company installs software on the set-top box.pdfinfo145003
 
Create 2 independent programs that perform communication using named.pdf
Create 2 independent programs that perform communication using named.pdfCreate 2 independent programs that perform communication using named.pdf
Create 2 independent programs that perform communication using named.pdfinfo145003
 
CPU scheduling algorithms simulation with IO management using arriva.pdf
CPU scheduling algorithms simulation with IO management using arriva.pdfCPU scheduling algorithms simulation with IO management using arriva.pdf
CPU scheduling algorithms simulation with IO management using arriva.pdfinfo145003
 
Course CryptographyAnswer in C or C++create a program that can .pdf
Course CryptographyAnswer in C or C++create a program that can .pdfCourse CryptographyAnswer in C or C++create a program that can .pdf
Course CryptographyAnswer in C or C++create a program that can .pdfinfo145003
 
Cox, North y Lee forman una sociedad. Cox aporta $189 000, North apo.pdf
Cox, North y Lee forman una sociedad. Cox aporta $189 000, North apo.pdfCox, North y Lee forman una sociedad. Cox aporta $189 000, North apo.pdf
Cox, North y Lee forman una sociedad. Cox aporta $189 000, North apo.pdfinfo145003
 
Courtney, who is much older than she appears, founded Talbot, Inc., .pdf
Courtney, who is much older than she appears, founded Talbot, Inc., .pdfCourtney, who is much older than she appears, founded Talbot, Inc., .pdf
Courtney, who is much older than she appears, founded Talbot, Inc., .pdfinfo145003
 
Cournot-style oligopoly The political authorities of Borduria and .pdf
Cournot-style oligopoly The political authorities of Borduria and .pdfCournot-style oligopoly The political authorities of Borduria and .pdf
Cournot-style oligopoly The political authorities of Borduria and .pdfinfo145003
 

More from info145003 (20)

2. Assume the readings on thermometers are normally distributed with.pdf
2. Assume the readings on thermometers are normally distributed with.pdf2. Assume the readings on thermometers are normally distributed with.pdf
2. Assume the readings on thermometers are normally distributed with.pdf
 
2. An ecologist claims that because of environmental influences, the.pdf
2. An ecologist claims that because of environmental influences, the.pdf2. An ecologist claims that because of environmental influences, the.pdf
2. An ecologist claims that because of environmental influences, the.pdf
 
2. Assess some of the challenges of service design.I need a full p.pdf
2. Assess some of the challenges of service design.I need a full p.pdf2. Assess some of the challenges of service design.I need a full p.pdf
2. Assess some of the challenges of service design.I need a full p.pdf
 
2. Between February 2008 and Summer 2009 the Fed supplemented its op.pdf
2. Between February 2008 and Summer 2009 the Fed supplemented its op.pdf2. Between February 2008 and Summer 2009 the Fed supplemented its op.pdf
2. Between February 2008 and Summer 2009 the Fed supplemented its op.pdf
 
2. Assume that each year the IRS randomly audits 3 of the tax retur.pdf
2. Assume that each year the IRS randomly audits 3 of the tax retur.pdf2. Assume that each year the IRS randomly audits 3 of the tax retur.pdf
2. Assume that each year the IRS randomly audits 3 of the tax retur.pdf
 
2. As we get started with this disscussion, I want us to define leve.pdf
2. As we get started with this disscussion, I want us to define leve.pdf2. As we get started with this disscussion, I want us to define leve.pdf
2. As we get started with this disscussion, I want us to define leve.pdf
 
2. A study by the Information Technology department at WPU revealed .pdf
2. A study by the Information Technology department at WPU revealed .pdf2. A study by the Information Technology department at WPU revealed .pdf
2. A study by the Information Technology department at WPU revealed .pdf
 
2. A researcher has reason to believe that, for an experiment with 5.pdf
2. A researcher has reason to believe that, for an experiment with 5.pdf2. A researcher has reason to believe that, for an experiment with 5.pdf
2. A researcher has reason to believe that, for an experiment with 5.pdf
 
2. Assume that the mean SAT score in Mathematics for 11th graders ac.pdf
2. Assume that the mean SAT score in Mathematics for 11th graders ac.pdf2. Assume that the mean SAT score in Mathematics for 11th graders ac.pdf
2. Assume that the mean SAT score in Mathematics for 11th graders ac.pdf
 
2. Describe what is measured by the estimated standard error in the .pdf
2. Describe what is measured by the estimated standard error in the .pdf2. Describe what is measured by the estimated standard error in the .pdf
2. Describe what is measured by the estimated standard error in the .pdf
 
2. Decide whether the distribution is a probability distribution. If.pdf
2. Decide whether the distribution is a probability distribution. If.pdf2. Decide whether the distribution is a probability distribution. If.pdf
2. Decide whether the distribution is a probability distribution. If.pdf
 
2. a- What is a Junk Bondb- What is a debentureSolution.pdf
2. a- What is a Junk Bondb- What is a debentureSolution.pdf2. a- What is a Junk Bondb- What is a debentureSolution.pdf
2. a- What is a Junk Bondb- What is a debentureSolution.pdf
 
2. A political party sends a mail survey to 1500 randomly selected r.pdf
2. A political party sends a mail survey to 1500 randomly selected r.pdf2. A political party sends a mail survey to 1500 randomly selected r.pdf
2. A political party sends a mail survey to 1500 randomly selected r.pdf
 
2. A media consulting company installs software on the set-top box.pdf
2. A media consulting company installs software on the set-top box.pdf2. A media consulting company installs software on the set-top box.pdf
2. A media consulting company installs software on the set-top box.pdf
 
Create 2 independent programs that perform communication using named.pdf
Create 2 independent programs that perform communication using named.pdfCreate 2 independent programs that perform communication using named.pdf
Create 2 independent programs that perform communication using named.pdf
 
CPU scheduling algorithms simulation with IO management using arriva.pdf
CPU scheduling algorithms simulation with IO management using arriva.pdfCPU scheduling algorithms simulation with IO management using arriva.pdf
CPU scheduling algorithms simulation with IO management using arriva.pdf
 
Course CryptographyAnswer in C or C++create a program that can .pdf
Course CryptographyAnswer in C or C++create a program that can .pdfCourse CryptographyAnswer in C or C++create a program that can .pdf
Course CryptographyAnswer in C or C++create a program that can .pdf
 
Cox, North y Lee forman una sociedad. Cox aporta $189 000, North apo.pdf
Cox, North y Lee forman una sociedad. Cox aporta $189 000, North apo.pdfCox, North y Lee forman una sociedad. Cox aporta $189 000, North apo.pdf
Cox, North y Lee forman una sociedad. Cox aporta $189 000, North apo.pdf
 
Courtney, who is much older than she appears, founded Talbot, Inc., .pdf
Courtney, who is much older than she appears, founded Talbot, Inc., .pdfCourtney, who is much older than she appears, founded Talbot, Inc., .pdf
Courtney, who is much older than she appears, founded Talbot, Inc., .pdf
 
Cournot-style oligopoly The political authorities of Borduria and .pdf
Cournot-style oligopoly The political authorities of Borduria and .pdfCournot-style oligopoly The political authorities of Borduria and .pdf
Cournot-style oligopoly The political authorities of Borduria and .pdf
 

Recently uploaded

Unveiling the Intricacies of Leishmania donovani: Structure, Life Cycle, Path...
Unveiling the Intricacies of Leishmania donovani: Structure, Life Cycle, Path...Unveiling the Intricacies of Leishmania donovani: Structure, Life Cycle, Path...
Unveiling the Intricacies of Leishmania donovani: Structure, Life Cycle, Path...Dr. Asif Anas
 
EBUS5423 Data Analytics and Reporting Bl
EBUS5423 Data Analytics and Reporting BlEBUS5423 Data Analytics and Reporting Bl
EBUS5423 Data Analytics and Reporting BlDr. Bruce A. Johnson
 
KARNAADA.pptx made by - saransh dwivedi ( SD ) - SHALAKYA TANTRA - ENT - 4...
KARNAADA.pptx  made by -  saransh dwivedi ( SD ) -  SHALAKYA TANTRA - ENT - 4...KARNAADA.pptx  made by -  saransh dwivedi ( SD ) -  SHALAKYA TANTRA - ENT - 4...
KARNAADA.pptx made by - saransh dwivedi ( SD ) - SHALAKYA TANTRA - ENT - 4...M56BOOKSTORE PRODUCT/SERVICE
 
3.26.24 Race, the Draft, and the Vietnam War.pptx
3.26.24 Race, the Draft, and the Vietnam War.pptx3.26.24 Race, the Draft, and the Vietnam War.pptx
3.26.24 Race, the Draft, and the Vietnam War.pptxmary850239
 
How to Solve Singleton Error in the Odoo 17
How to Solve Singleton Error in the  Odoo 17How to Solve Singleton Error in the  Odoo 17
How to Solve Singleton Error in the Odoo 17Celine George
 
Work Experience for psp3 portfolio sasha
Work Experience for psp3 portfolio sashaWork Experience for psp3 portfolio sasha
Work Experience for psp3 portfolio sashasashalaycock03
 
Over the counter (OTC)- Sale, rational use.pptx
Over the counter (OTC)- Sale, rational use.pptxOver the counter (OTC)- Sale, rational use.pptx
Over the counter (OTC)- Sale, rational use.pptxraviapr7
 
The Stolen Bacillus by Herbert George Wells
The Stolen Bacillus by Herbert George WellsThe Stolen Bacillus by Herbert George Wells
The Stolen Bacillus by Herbert George WellsEugene Lysak
 
SOLIDE WASTE in Cameroon,,,,,,,,,,,,,,,,,,,,,,,,,,,.pptx
SOLIDE WASTE in Cameroon,,,,,,,,,,,,,,,,,,,,,,,,,,,.pptxSOLIDE WASTE in Cameroon,,,,,,,,,,,,,,,,,,,,,,,,,,,.pptx
SOLIDE WASTE in Cameroon,,,,,,,,,,,,,,,,,,,,,,,,,,,.pptxSyedNadeemGillANi
 
CapTechU Doctoral Presentation -March 2024 slides.pptx
CapTechU Doctoral Presentation -March 2024 slides.pptxCapTechU Doctoral Presentation -March 2024 slides.pptx
CapTechU Doctoral Presentation -March 2024 slides.pptxCapitolTechU
 
Department of Health Compounder Question ‍Solution 2022.pdf
Department of Health Compounder Question ‍Solution 2022.pdfDepartment of Health Compounder Question ‍Solution 2022.pdf
Department of Health Compounder Question ‍Solution 2022.pdfMohonDas
 
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRADUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRATanmoy Mishra
 
Education and training program in the hospital APR.pptx
Education and training program in the hospital APR.pptxEducation and training program in the hospital APR.pptx
Education and training program in the hospital APR.pptxraviapr7
 
ARTICULAR DISC OF TEMPOROMANDIBULAR JOINT
ARTICULAR DISC OF TEMPOROMANDIBULAR JOINTARTICULAR DISC OF TEMPOROMANDIBULAR JOINT
ARTICULAR DISC OF TEMPOROMANDIBULAR JOINTDR. SNEHA NAIR
 
HED Office Sohayok Exam Question Solution 2023.pdf
HED Office Sohayok Exam Question Solution 2023.pdfHED Office Sohayok Exam Question Solution 2023.pdf
HED Office Sohayok Exam Question Solution 2023.pdfMohonDas
 
Ultra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptxUltra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptxDr. Asif Anas
 
Diploma in Nursing Admission Test Question Solution 2023.pdf
Diploma in Nursing Admission Test Question Solution 2023.pdfDiploma in Nursing Admission Test Question Solution 2023.pdf
Diploma in Nursing Admission Test Question Solution 2023.pdfMohonDas
 
How to Manage Cross-Selling in Odoo 17 Sales
How to Manage Cross-Selling in Odoo 17 SalesHow to Manage Cross-Selling in Odoo 17 Sales
How to Manage Cross-Selling in Odoo 17 SalesCeline George
 
How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17Celine George
 
A gentle introduction to Artificial Intelligence
A gentle introduction to Artificial IntelligenceA gentle introduction to Artificial Intelligence
A gentle introduction to Artificial IntelligenceApostolos Syropoulos
 

Recently uploaded (20)

Unveiling the Intricacies of Leishmania donovani: Structure, Life Cycle, Path...
Unveiling the Intricacies of Leishmania donovani: Structure, Life Cycle, Path...Unveiling the Intricacies of Leishmania donovani: Structure, Life Cycle, Path...
Unveiling the Intricacies of Leishmania donovani: Structure, Life Cycle, Path...
 
EBUS5423 Data Analytics and Reporting Bl
EBUS5423 Data Analytics and Reporting BlEBUS5423 Data Analytics and Reporting Bl
EBUS5423 Data Analytics and Reporting Bl
 
KARNAADA.pptx made by - saransh dwivedi ( SD ) - SHALAKYA TANTRA - ENT - 4...
KARNAADA.pptx  made by -  saransh dwivedi ( SD ) -  SHALAKYA TANTRA - ENT - 4...KARNAADA.pptx  made by -  saransh dwivedi ( SD ) -  SHALAKYA TANTRA - ENT - 4...
KARNAADA.pptx made by - saransh dwivedi ( SD ) - SHALAKYA TANTRA - ENT - 4...
 
3.26.24 Race, the Draft, and the Vietnam War.pptx
3.26.24 Race, the Draft, and the Vietnam War.pptx3.26.24 Race, the Draft, and the Vietnam War.pptx
3.26.24 Race, the Draft, and the Vietnam War.pptx
 
How to Solve Singleton Error in the Odoo 17
How to Solve Singleton Error in the  Odoo 17How to Solve Singleton Error in the  Odoo 17
How to Solve Singleton Error in the Odoo 17
 
Work Experience for psp3 portfolio sasha
Work Experience for psp3 portfolio sashaWork Experience for psp3 portfolio sasha
Work Experience for psp3 portfolio sasha
 
Over the counter (OTC)- Sale, rational use.pptx
Over the counter (OTC)- Sale, rational use.pptxOver the counter (OTC)- Sale, rational use.pptx
Over the counter (OTC)- Sale, rational use.pptx
 
The Stolen Bacillus by Herbert George Wells
The Stolen Bacillus by Herbert George WellsThe Stolen Bacillus by Herbert George Wells
The Stolen Bacillus by Herbert George Wells
 
SOLIDE WASTE in Cameroon,,,,,,,,,,,,,,,,,,,,,,,,,,,.pptx
SOLIDE WASTE in Cameroon,,,,,,,,,,,,,,,,,,,,,,,,,,,.pptxSOLIDE WASTE in Cameroon,,,,,,,,,,,,,,,,,,,,,,,,,,,.pptx
SOLIDE WASTE in Cameroon,,,,,,,,,,,,,,,,,,,,,,,,,,,.pptx
 
CapTechU Doctoral Presentation -March 2024 slides.pptx
CapTechU Doctoral Presentation -March 2024 slides.pptxCapTechU Doctoral Presentation -March 2024 slides.pptx
CapTechU Doctoral Presentation -March 2024 slides.pptx
 
Department of Health Compounder Question ‍Solution 2022.pdf
Department of Health Compounder Question ‍Solution 2022.pdfDepartment of Health Compounder Question ‍Solution 2022.pdf
Department of Health Compounder Question ‍Solution 2022.pdf
 
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRADUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
DUST OF SNOW_BY ROBERT FROST_EDITED BY_ TANMOY MISHRA
 
Education and training program in the hospital APR.pptx
Education and training program in the hospital APR.pptxEducation and training program in the hospital APR.pptx
Education and training program in the hospital APR.pptx
 
ARTICULAR DISC OF TEMPOROMANDIBULAR JOINT
ARTICULAR DISC OF TEMPOROMANDIBULAR JOINTARTICULAR DISC OF TEMPOROMANDIBULAR JOINT
ARTICULAR DISC OF TEMPOROMANDIBULAR JOINT
 
HED Office Sohayok Exam Question Solution 2023.pdf
HED Office Sohayok Exam Question Solution 2023.pdfHED Office Sohayok Exam Question Solution 2023.pdf
HED Office Sohayok Exam Question Solution 2023.pdf
 
Ultra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptxUltra structure and life cycle of Plasmodium.pptx
Ultra structure and life cycle of Plasmodium.pptx
 
Diploma in Nursing Admission Test Question Solution 2023.pdf
Diploma in Nursing Admission Test Question Solution 2023.pdfDiploma in Nursing Admission Test Question Solution 2023.pdf
Diploma in Nursing Admission Test Question Solution 2023.pdf
 
How to Manage Cross-Selling in Odoo 17 Sales
How to Manage Cross-Selling in Odoo 17 SalesHow to Manage Cross-Selling in Odoo 17 Sales
How to Manage Cross-Selling in Odoo 17 Sales
 
How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17
 
A gentle introduction to Artificial Intelligence
A gentle introduction to Artificial IntelligenceA gentle introduction to Artificial Intelligence
A gentle introduction to Artificial Intelligence
 

covert to BASH name_list =[ Constance Castillo, Kerry .pdf

  • 1. covert to BASH name_list =[ 'Constance Castillo', 'Kerry Goodwin', 'Dorothy Carson', 'Craig Williams', 'Daryl Guzman', 'Sherman Stewart', 'Marvin Collier', 'Javier Wilkerson', 'Lena Olson', 'Claudia George', 'Erik Elliott', 'Traci Peters', 'Jack Burke', 'Jody Turner', 'Kristy Jenkins', 'Melissa Griffin', 'Shelia Ballard', 'Armando Weaver', 'Elsie Fitzgerald', 'Ben Evans', 'Lucy Baker', 'Kerry Anderson', 'Kendra Tran', 'Arnold Wells', 'Anita Aguilar', 'Earnest Reeves', 'Irving Stone', 'Alice Moore', 'Leigh Parsons', 'Mandy Perez', 'Rolando Paul', 'Delores Pierce', 'Zachary Webster', 'Eddie Ward', 'Alvin Soto', 'Ross Welch', 'Tanya Padilla', 'Rachel Logan', 'Angelica Richards', 'Shelley Lucas', 'Alison Porter', 'Lionel Buchanan', 'Luis Norman', 'Milton Robinson', 'Ervin Bryant', 'Tabitha Reid', 'Randal Graves', 'Calvin Murphy', 'Blanca Bell', 'Dean Walters', 'Elias Klein', 'Madeline White', 'Marty Lewis', 'Beatrice Santiago', 'Willis Tucker', 'Diane Lloyd', 'Al Harrison', 'Barbara Lawson', 'Jamie Page', 'Conrad Reynolds', 'Darnell Goodman', 'Derrick Mckenzie', 'Erika Miller., 'Tasha Todd', 'Aaron Nunez', 'Julio Gomez', 'Tommie Hunter', 'Darlene Russell', 'Monica Abbott', 'Cassandra Vargas', 'Gail Obrien', 'Doug Morales', 'Ian James', 'Jean Moran', 'Carla Ross', 'Marjorie Hanson', 'Clark Sullivan', 'Rick Torres', 'Byron Hardy', 'Ken Chandler', 'Brendan Carr', 'Richard Francis', 'Tyler Mitchell', 'Edwin Stevens', 'Paul Santos', 'Jesus Griffith', 'Maggie Maldonado', 'Isaac Allen', 'Vanessa Thompson', 'Jeremy Barton', 'Joey Butler', 'Randy Holmes', 'Loretta Pittman', 'Essie Johnston', 'Felix Weber', 'Gary Hawkins', 'Vivian Bowers', 'Dennis Jefferson', 'Dale Arnold', 'Joseph Christensen', 'Billie Norton', 'Darla Pope', 'Tommie Dixon', 'Toby Beck', 'Jodi Payne', 'Marjorie Lowe', 'Fernando Ballard', 'Jesse Maldonado', 'Elsa Burke', 'Jeanne Vargas', 'Alton Francis', 'Donald Mitchell', 'Dianna Perry', 'Kristi Stephens', 'Virgil Goodwin', 'Edmund Newton', 'Luther Huff', 'Hannah Anderson', 'Emmett Gill', 'Clayton Wallace', 'Tracy Mendez', 'Connie Reeves', 'Jeanette Hansen', 'Carole Fox', 'Carmen Fowler', 'Alex Diaz', 'Rick Waters', 'Willis Warren', 'Krista Ferguson', 'Debra Russell', 'Ellis Christensen'. 'Freda Johnston'. 'Janis Carpenter'. 'Rosemarv Sherman'. Ln1,Col1 "Joey Butler", "Randy Holmes", "Loretta Pittman", "Essie Johnston", "Felix Weber", "Gary Hawkins", "Vivian Bowers", "Dennis Jefferson", "Dale Amold", "Joseph Christensen", "Billie Norton", "Darla Pope", "Tommie Dixon", "Toby Beck", "Jodi Payne", "Marjorie Lowe", "Fernando Balland", "Jesse Maldonado", "Elsa Burke", "Jeanne Vargas", "Alton Francis", "Donald Mitchel1', "Dianna Perry", "Kristi Stephens", "Virgil Goodwin", "Edmund Newton",
  • 2. "Luther Huff", "Hannah Anderson', "Emmett Gi11", "Clayton Wallace", "Tracy Mendez", "Connie Reeves", "Jeanette Hansen", "Carole Fox", "Carmen Fowler", "Alex Diaz", "Rick Waters", "Willis Warren", "Krista Ferguson", "Debra Russell', "El1is Christensen", "Freda Johnston', "Janis Carpenter', "Rosemary Sherman", "Earnest Peters", "Kelly West", "Jorge Caldwell', 'Moses Norris", "Erica Riley", "Ray Gordon", "Abel Poole', "Cary Boone', "Grant Gomez", "Denise Chapman', "Vernon Moran', 'Ben Walker', "Francis Benson", "Andrea Sullivan', "Wayne Rice", "Jamie Mason", "Jane Figueroa", "Pat Wade", "Rudy Bates", "Clyde Harris', "Andre Mathis", "Carlton Oliver', "Merle Lee', 'Amber wright', "Russell Becker", "Natalie Wheeler', "Maryann Miller", 'Lucia Byrd', "Jenny Zimmerman", "Kari Mccarthy", "Jeannette Cain', "Ian Walsh", "Herman Martin', "Ginger Farmer', "Catherine Williamson', 'Lorena Henderson', "Molly Watkins", 'Sherman Ford', "Adam Gross", "Alfred Padi1la', "Dwayne Gibson", "Shawn Ha11", "Anthony Rios', 'Kelly Thomas', "A1lan Owens", "Duane Malone,", "Chris George', Dana Holt', "Muriel Santiago", "Shelley Osborne', "Clinton Ross', 'Kelley Parsons', "Sophia Lewis", "Sylvia Cooper", "Regina Aguilar', 'Sheila Castillo', "Sheri Mcdonald', "Lynn Hodges", 'Patrick Medina', "Arlene Tate', "Minnie Weber', "Geneva Pena', 'Byron Collier', 'Veronica Higgins', "Leo Roy", "Nelson Lopez'] #These are my functions def option_1 (): #Lookup by first name first_name_counter =0 first_name_begins_with = input ("InWhat letter does the first name begin with? ") first_name_begins_with = first_name_begins_with. upper() Ln 1, Col 1 'Minnie Weber', 'Geneva Pena', 'Byron Collier', 'Veronica Higgins', 'Leo Roy', 'Nelson Lopez'] #These are my functions def option_1 (): #Lookup by first name first_name_counter =0 first_name_begins_with = input( 'nWhat letter does the first name begin with? ') first_name_begins_with = first_name_begins_with.upper() print() for i in name_list: if i.startswith(first_name_begins_with): print(i) first_name_counter +=1 if first_name_counter ==0 : print('No first names were found starting with the letter ' + first_name_begins_with. upper()) def option_2(): #Lookup by last name counter =0 last_name_begins_with = input ( 'InWhat letter does the last name begin with? ") last_name_begins_with = last_name_begins_with. upper() print() for i in name_list: name_split =i.split() if name_split[1].startswith(last_name_begins_with): print(name_split [1]++ name_split []) counter +=1 if counter ==0 : print ('No last names were found starting with the letter ' + last_name_begins_with.upper()) def option_3(): #Add a name new_first_name = input ( 'InEnter the new first name: ') new_last_name = input ('Enter the new last name: ') new_name = new_first_name.title ()++ new_last_name.title () name_list. append (new_name) nuint 1.1n & nomo 1ic+111. hac hoan ordad. 1
  • 3. ile True: print( ease select from the following options: 1. List all first names beginning with a chosen letter 2. List all last names beginning with a chosen letter 3. Add a name 4. Delete a name 5. Exit user_menu_choice = input ('Option#: ') if user_menu_choice == ' 1 ': option_1() continue elif user_menu_choice == ' 2 ' : option_2() continue elif user_menu_choice ==3 : option_3() continue elif user_menu_choice == ' 4 ' : option_4() continue elif user_menu_choice == ' 5 ' : break else: print(" That is not a valid option. Please try again.") continue