We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exercise 1.28: Other kinds of “files” gives an IndentationError. It looks like
Exercise 1.28: Other kinds of “files”
IndentationError
>>> import gzip >>> with gzip.open('Data/portfolio.csv.gz', 'rt') as f: for line in f: print(line, end='')
should be changed to something like
Thank you for this great course.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Exercise 1.28: Other kinds of “files”
gives anIndentationError
. It looks likeshould be changed to something like
Thank you for this great course.
The text was updated successfully, but these errors were encountered: