Question: Create seperate . py source files to complete the tasks below Task 1 Ask the user for a number Output a boolean value that answers

Create seperate .py source files to complete the tasks below
Task 1
Ask the user for a number
Output a boolean value that answers the question: are all the characters of the user input numerical?
Task 2
Ask the user for an input
Output a boolean value that answers the question: is the input is a valid title
Transform the input to all uppercase letters
Task 3
Ask user for input
Ask user for character
Output a True or False value if the character is found in the input
Output a position of where the character is found
Task 4
Ask the user for two numbers
Output the first number raised to the second number using an arithmetic operator
Task 5
Ask the user for a year
Output to the user if the year is a leap year by following the algorithm below
To determine whether a year is a leap year, follow these steps:
1)If the year is evenly divisible by 4, go to step 2. Otherwise, go to step 5.
2)If the year is evenly divisible by 100, go to step 3. Otherwise, go to step 4.
3)If the year is evenly divisible by 400, go to step 4. Otherwise, go to step 5.
4)The year is a leap year (it has 366 days).
5)The year is not a leap year (it has 365 days).
Output "Yes, {year} is a leap year" or "No,{year} is not a leap year"
Task 6
Ask the user for a number
Determine if the number is positive, negative, or neutral
Output a message to screen
Task 7
Ask the user for a letter. Assume the use will input only a single letter
Determine if the user input is a vowel.
If so, output which vowel the user inputted
If not, output another message

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!