Pratik Ghelani

Pratik Ghelani

Breaking

Thursday, August 27, 2020

Sunday, May 10, 2020

6:17 AM

. Create a list of temperatures in degrees Celsius with the values 25.2,16.8, 31.4, 23.9, 28, 22.5, and 19.6, and assign it to a variable called temps. Using one of the list methods, sort temps in ascending order. Write for loop to convert all the values from temps_in_celsius into Fahrenheit, and store the converted values in a new list temps_in_fahrenheit.

Input:- n = int(input("Enter the temperature list:")) Temp = [25.2,16.8, 31.4, 23.9, 28, 22.5,19.6] b = [] for i in range (0,n):    ...
6:15 AM

Create a class “employee” with attributes like id, name, designation, emailid, birthdate, city. a.getData() to take employee information. b.setData() to display employee information. Inherit class “Account” with attributes like acc_id, acc_type, amount and methods to generate account report of peticular employee in proper format. Implement regular expression to validate emailid and birthdate.

Input:- import re class employee(object):     employee_id=0     employee_name=""     designation...