Write a complete ilython program that prompts the user for his/her full name. Regardless of the user input, the program will produce output such that all of the first name will be in lower case, and the second name should be upper case except for the last letter which should be lower case.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Topic Video
Question
Use python 3.5 Follow instructions Define and invoke main
Write a complete ilython program that prompts the user for his/her full name.
Regardless of the user input,
the program will produce output such that all of the first name will be in lower case,
and
the second name should be upper case
except for the last letter which should be lower case.
The file should start with two comments:
Your name
Today's date
Two execution runs are shown below:
>>> main ()
Enter your name: Ant Man
ant MAn
>>> main ()
Enter your name: donald trump
donald TRUMP
>>>
Transcribed Image Text:Write a complete ilython program that prompts the user for his/her full name. Regardless of the user input, the program will produce output such that all of the first name will be in lower case, and the second name should be upper case except for the last letter which should be lower case. The file should start with two comments: Your name Today's date Two execution runs are shown below: >>> main () Enter your name: Ant Man ant MAn >>> main () Enter your name: donald trump donald TRUMP >>>
Expert Solution
Code:

def main():
    name = input("Enter your name: ") # Inputting the name

    parts = name.split() # Extracting out first name and second name from name
    firstName = parts[0]
    secondName = parts[1]

    firstName = firstName.lower() # Converting the first name to lower case
    secondName = secondName[:-1].upper() + secondName[-1].lower() # Converting the second name to upper case, the last letter to lower case
    print(firstName, secondName) # Displaying the name

if __name__ == "__main__":
    main()

Code:

Computer Science homework question answer, step 2, image 1

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Instruction Format
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education