Question: Please create Python _ fun.py file that contains all four functions. 1 . Write a function UserInputReturns ( ) that gets a string as input
Please create Pythonfun.py file that contains all four functions.
Write a function UserInputReturns that gets a string as input from the user and returns a message.
Write a function ParameterReturns that gets a string as input in its parameter and returns a message.
Write a function UserInputPrints that gets a string as input from the user and prints a message.
Write a function ParameterPrints that gets a string as input in its parameter and prints a message.
All functions use string methods to either examine or transform the string.
Sample calls and output
printUserInputReturns
printParameterReturnsstring of characters'
UserInputPrints
ParameterPrintsChocolate
Please enter a string of characters:Good day!
The length of the string is
String converted to upper case is STRING OF CHARACTERS
Please enter a string of characters:my string
The string capitalized is My string
The first letter of the string is C
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
