Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a function def fullName to have user input their full name and then print their first name and last separately and with proper case.

Write a function def fullName to have user input their full name and then print their first name and last separately and with proper case. ## TRY TO USE SINGLE INPUT FOR TWO NAMES AND IF THEY'RE FUNKY ie. miChaEl
def fullName(string):
first = fullName(string).split ()
first = first.capitalize()
last = fullName(string).split ()-1
last = last.capitalize()
return fullName
def main() :
fullName =(input("Enter your full name: "))
print("First name is", fullName(string),". And last name is", fullName(string))
main()
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David M. Kroenke

1st Edition

0130086509, 978-0130086501

More Books

Students also viewed these Databases questions

Question

What is the relation of physical mathematics with examples?

Answered: 1 week ago

Question

What are oxidation and reduction reactions? Explain with examples

Answered: 1 week ago

Question

What is the basis for Security Concerns in Cloud Computing?

Answered: 1 week ago

Question

Describe the three main Cloud Computing Environments.

Answered: 1 week ago