Create two more functions the first function will discover


You need help with this portion of my python code. Below are the instructions for the project.

Modify you're the program from Task 1 to take as input a single character. This can be accomplished by printing clear instructions to the user on what they should input.

Create two more functions.

The first function will discover if there were upper case letters in the single letter user input.

This function will return String stating the outcome of the test for upper case letters in the String.

Use variables and the String Formatting operator to create this string.

The second function will discover if there were lower case letters in the single letter user input

This function will return String stating the outcome of the test for lower case letters in the String.

Use variables and the String Formatting operator to create this string.

This is the first portion of the code that I wrote. Also I'm using Python 3.6

def hello(): print("Hello, what is your name?: ") name = input() print("Hello " + name.upper()) hello()

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: Create two more functions the first function will discover
Reference No:- TGS02871201

Expected delivery within 24 Hours