Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python 3.7.2 for language Please comment for each line of code good naming is important 1. Answer the question: what is the Python regular expression

Python 3.7.2 for language

Please comment for each line of code

good naming is important

1. Answer the question: what is the Python regular expression pattern that would match a hex color (https://en.wikipedia.org/wiki/Web_colors ) (for example, the pattern that would match an email address is '[\w.-]+@[\w.-]')

  1. Write an algorithm for step 3. As part of your algorithm, be sure to describe the pattern you're using to find the win/loss result for each game.

  1. Write a program that looks at the source of http://cgi.soic.indiana.edu/~dpierz/mbball.html (http://cgi.soic.indiana.edu/~dpierz/mbball.html ) (a copy of the IU men's basketball team record page). Use regular expressions to find all the games IU has played in this year and calculate the total number of wins and losses (including exhibition games)

The output should look like the following:

Wins: 18 Losses: 12

Bonus [10 pts]. Extend your code from part 3 to also calculate the total difference in points scored in all the games (a game that finished 68-71 would have a difference of 3 points, 85-52 a difference of 33 points etc)

Total Difference: 431

Remember, as always good coding practices are part of the grade so be sure to comment your code, use good variable names, efficient regular expressions, etc.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

10. What are some techniques for collaborative writing? (LO 8-7)

Answered: 1 week ago

Question

What is meant by Career Planning and development ?

Answered: 1 week ago

Question

What are Fringe Benefits ? List out some.

Answered: 1 week ago