Computer Science, asked by cyrabinoy, 5 months ago

IN HTML
*Create a web page and set its Title as, 'My Classmates'
*Set the background colour to orange
*Set the top margin of the web page tp 75
*Set Table border size to 3 pixels and border colour to green
*Table height should be 250 pixels and width should be 500 pixels
*Align the table in the center of the web page
*Create 5 columns in the table and name the fields as S.No, Name, Birthday, E-mail ID, and Phone No.
*Create five rows in the table and enter records of your five classmates
*Set the background colour of the heading row to yellow
*Set cellpadding attribute of the table to 5

Answers

Answered by Anonymous
5

Explanation:

nums = []

while True:

n = input("enter num: ")

if n == "notmore":

total = sum(nums)

count = len(nums)

print(f"total: {total}\ncount: {count}\naverage: {total / count}")

break

if n.isnumeric():

nums.append(int(n))

continue

Similar questions