Python - Why Python: Similar but Different - PSL(The Python Standard Library)
Head First Python: A Learner’s Guide to the Fundamentals of Python Programming, A Brain-Friendly Guide、 Paul Barry(著)、 O’Reilly Mediaの Chapter 1.(Why Python?: Similar but Different)、SHARPEN YOUR PENCIL(98/682)の解答を求めてみる。
random | can generate numbers in an unpredictable order |
collections | provides a bunch of advanced data types |
os | lets you interact with your underlying operating system |
itertools | for all your advanced looping needs |
http.server | it’s a built-in web server |
pdb | you can use this to debug your Python code |
pprint | this docs the trick when your output needs to be pretty |
csv | processes a comma-delimited file of text |
stat | reports on file’s modification date, for instance |
unittest | this module let’s you test your code one function at a time |
re | a regular expression library (not “line noise”) |
enum | a set of typed named values |
ssl | digital cets and encrypted connections rely on this module |
json | popular structured text format, sometimes call a “document” |
sys | tells you all about the system you’re running on |
zipfile | if your data’s compressed in a file, this module’s got your back |
sqlite3 | the world’s most popular embedded relational database system |