Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Greeter Write a function that takes in a person's name, and prints out a greeting. The greeting must be at least three lines, and the
Greeter
- Write a function that takes in a person's name, and prints out a greeting.
- The greeting must be at least three lines, and the person's name must be in each line.
- example:
- Hello name
- How are you do name
- Nice to meet you name
- example:
- Use your function to greet at least three different people.
Full Names
- Write a function that takes in a first name and a last name, and prints out a nicely formatted full name, in a sentence. Your sentence could be as simple as, "Hello, full_name."
- Call your function three separate times, utilizing different names each time.
Addition Calculator
- Write a function that takes in two numbers, and adds them together. Make your function print out a sentence showing the two numbers, and the Total.
- Call your function three separate times with three different sets of numbers.
Create a Module that will import the above Functions and run those functions from within the file
- Save the file as yourLastname_ ImportFile.py
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started