python-basics-exercises
python-basics-exercises copied to clipboard
Python Basics: A Practical Introduction to Python 3
**Original Text** However, deeply nested subpackages introduce long dotted module names. You can image how much typing it would take to import a module from a subpackage of a subpackage...
**Original Text** Don’t worry about how the datetime class works right now. The important part of this example is that having to constantly time datetime.datetime anytime you want to use...
typo in: `>>> daily_tempraturees = []`
`>>> file = file_path.open(mode="w", encoding="utf-8")` _Now create a new CSV writer object by passing the file object file to csv.writer():_ `>>> writer = csv.writer()` You did not passed the **file**...
`>>> file_path = Path.home() / "temperatures.txt"` but in page 375 says: _This creates a file called **temperatures.csv** in your home directory andopens it in append mode._ Obviously it creates temperature.txt...
On some ocassions, adj3 turns out to start with a vowel so the article before it should be conditional.
Hello, I'm going through the Python Basic book and going through the excersises and I've come across a possible code error in the PDF page 85, question 5. The solutions...
add 3 example