py4e icon indicating copy to clipboard operation
py4e copied to clipboard

Web site for www.py4e.com and source to the Python 3.0 textbook

Results 83 py4e issues
Sort by recently updated
recently updated
newest added

Version of BS4 was out of date and not compatible with Python 3.10. This is an update to BS4 4.10.0.

Chapter 13.10 states "To make use of these programs you will need to have a Twitter account, and authorize your Python code as an application, set up a key, secret,...

Hi, I am MinSeok who is a newbie of Python.. I found one bug on code3/urlregex.py, so I am reporting below. There were making ctx object but it would never...

Exercise 2 in chapter 3 line 7 should be: `pay = hours * rate + (hours - 40) * rate * 0.5` instead of: `pay = hours * rate +...

When downloaded from https://www.py4e.com/lessons/Objects you get an empty PPT file By the way... thanks for this wonderful material!

Dear Chuck, I am doing exercise 2 on https://www.py4e.com/html3/11-regex I found my VS Code peek problem noticed that: Anomalous backslash in string: '\s'. String constant might be missing an r...

### A small problem at 'Combining searching and extracting' section Under Example of `Details: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39772`. There is an extra period character in the regular expression `'^Details:.*rev=([0-9.]+)'`. As you explained in...

If we type 'done' as the first input, the program will crash with a "ZeroDivisionError". ``` Traceback (most recent call last): File "readnumbers.py", line 15, in average = total /...

In the 'Tuple Assignment' section of Chapter 10 there are 3 code examples where the example shows operations on a list rather than a tuple. ### First: >>> m =...

Hello, Thanks, everyone so much for this course! 1. Found small type in the 11th chapter, section 'Extracting data using regular expressions': ... Here is our new regular expression: `[a-zA-Z0-9]\S*@\S*[a-zA-Z]`...