Write a python script that will compute and display information for a company that rents vehicles to its customers. For a specified customer, the program will compute and display the amount of money charged for that customer's vehicle rental after prompting the user to enter the following four items for a given customer (in the specified order) The customer's classification code (a character either B, D.) The number of days the vehicle was rented (an integer) The vehicle's odometer reading at the start of the rental period (an integer) The vehicle's odometer reading at the end of the rental period (an integer) The program will compute the amount of money that the customer will be billed, based on the customers classification code, number of days in the rental period, and number of miles driven. The program will recognize both upper case and lower case letters for the classification codes. Code 'B' (budget) base charge: $40.00 for each day mileage charge: $0.25 for each mile driven Code 'D' (daily) base charge: $60.00 for each day mileage charge: no charge if the average number of miles driven per day is 100 miles or less; otherwise, $0.25 for each mile driven above the 100 mile per day limit. You work for an on-line game site. Your job is to develop a program that accepts a user name and password. Write a Python script that prompts users for a user name and password. a. The user name should be at least 6 characters long and is stored in a list such that it can't be used again. b. The password can only be validated if the following conditions are met: At least 1 letter between [a-z] and 1 letter between [A-Z]. At least 1 number between [0-9]. At least 1 character from [$#@]. Minimum length 6 characters. Maximum length 16 characters. Write a Python script to find numbers between 100 and 400 (both included) where each digit of a number is an even number. The numbers obtained should be printed in a comma-separated sequence