
csv — CSV File Reading and Writing — Python 3.13.3 documentation
2 days ago · The csv module implements classes to read and write tabular data in CSV format. It allows programmers to say, “write this data in the format preferred by Excel,” or “read data from this file which was generated by Excel,” without knowing the …
IDLE — Python editor and shell — Python 3.13.3 documentation
2 days ago · IDLE is Python’s Integrated Development and Learning Environment. IDLE has the following features: cross-platform: works mostly the same on Windows, Unix, and macOS. Python shell window (interactive interpreter) with colorizing of code input, output, and error messages
pprint — Data pretty printer — Python 3.13.3 documentation
1 day ago · The pprint module provides a capability to “pretty-print” arbitrary Python data structures in a form which can be used as input to the interpreter. If the formatted structures include objects which are not fundamental Python types, the representation may not be loadable.
email: Examples — Python 3.13.3 documentation
2 days ago · email: Examples¶. Here are a few examples of how to use the email package to read, write, and send simple email messages, as well as more complex MIME messages.. First, let’s see how to create and send a simple text message (both the text content and the addresses may contain unicode characters):
3.13.3 Documentation - Python
2 days ago · What's new in Python 3.13? Or all "What's new" documents since Python 2.0. Tutorial Start here: a tour of Python's syntax and features. Library reference Standard library and builtins. Language reference Syntax and language elements. Python setup and usage How to install, configure, and use Python. Python HOWTOs In-depth topic manuals ...
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — …
cgi スクリプトは、http サーバによって起動され、通常は html の <form> または <isindex> エレメントを通じてユーザが入力した内容を処理します。 ほとんどの場合、CGI スクリプトはサーバ上の特殊なディレクトリ cgi-bin の下に置きます。
datetime — Basic date and time types — Python 3.13.3 …
For interval units other than seconds, use the division form directly (e.g. td / timedelta(microseconds=1)). Note that for very large time intervals (greater than 270 years on most platforms) this method will lose microsecond accuracy.
wave — Read and write WAV files — Python 3.13.3 documentation
2 days ago · Deprecated since version 3.13, will be removed in version 3.15: The method only existed for compatibility with the aifc module which has been removed in Python 3.13. The following two methods define a term “position” which is compatible between them, and is otherwise implementation dependent.
HOWTO Fetch Internet Resources Using The urllib Package - Python
2 days ago · urllib.request is a Python module for fetching URLs (Uniform Resource Locators). It offers a very simple interface, in the form of the urlopen function. This is capable of fetching URLs using a variety of different protocols.
tkinter — Python interface to Tcl/Tk — Python 3.13.3 documentation
2 days ago · Running python-m tkinter from the command line should open a window demonstrating a simple Tk interface, letting you know that tkinter is properly installed on your system, and also showing what version of Tcl/Tk is installed, so you can read the Tcl/Tk documentation specific to that version.