Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 273 for THE (0.124 sec.)
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 5235
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 存します。 threading モジュールを参照してください。 The module implements three types of queue, which diff ... er only in the order in which the entries are retrieved. In a FIF ... O queue, the first tasks added are the first retrieved. In a LI ... FO queue, the most recently added entry is the first retrieved ( ...
https://man.plustar.jp/python/library/queue.html - [similar]
3. Windows で Python を使う — Python 3.6.5 ドキュメント 5235
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... レクトリとスクリプトディレクトリを、また、環境変数 PATHEXT に .PY を追加する。 0 Shortcuts インストールする ... のユーザごとインストールに限った場合のお勧めです。) The options listed above can also be provided in a fil ... e named unattend.xml alongside the executable. This file specifies a list of options ... are always left as strings. This example file sets the same options and the previous example: <Options> < ...
https://man.plustar.jp/python/using/windows.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 5215
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... うにしています。 It is important to understand that the management of the Python heap is performed by the ... interpreter itself and that the user has no control over it, even if she regularly ... pulates object pointers to memory blocks inside that heap. The allocation of heap space for Python object ... s and other internal buffers is performed on demand by the Py ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 5186
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... トを省いても大丈夫です。 いくつかの例です: # this is the first comment spam = 1 # and this is the second co ... 66666667 >>> >>> 17 // 3 # floor division discards the fractional part 5 >>> 17 % 3 # the % operator retu ... rns the remainder of the division 2 >>> 5 * 3 + 2 # result ... [1] : >>> 5 ** 2 # 5 squared 25 >>> 2 ** 7 # 2 to the power of 7 128 等号 ( = ) は変数に値を代入します。 ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
21.10. urllib.robotparser --- robots.txt のためのパーザ — Python 3.6.5 ドキュメ... 5166
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 刻に設定します。 crawl_delay ( useragent ) ¶ Returns the value of the Crawl-delay parameter from robots.txt ... for the useragent in question. If there is no such paramet ... er or it doesn't apply to the useragent specified or the robots.txt entry for th ... ン 3.6 で追加. request_rate ( useragent ) ¶ Returns the contents of the Request-rate parameter from robots ...
https://man.plustar.jp/python/library/urllib.robotparser.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 5059
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... stack ( f ) ¶ Walk a stack following f.f_back from the given frame, yielding the frame and line number fo ... r each frame. If f is None , the current stack is used. This helper is used with St ... tb ) ¶ Walk a traceback following tb_next yielding the frame and line number for each frame. This helper ... taken from frame_gen . If lookup_lines is False , the returned FrameSummary objects will not have read t ...
https://man.plustar.jp/python/library/traceback.html - [similar]
7. 入力と出力 — Python 3.6.5 ドキュメント 5059
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 4285' >>> x = 10 * 3.25 >>> y = 200 * 200 >>> s = 'The value of x is ' + repr ( x ) + ', and y is ' + rep ... r ( y ) + '...' >>> print ( s ) The value of x is 32.5, and y is 40000... >>> # The re ... ello ) >>> print ( hellos ) 'hello, world\n' >>> # The argument to repr() may be any Python object: ... r ... 的な使い方は次のようなものです: >>> print ( 'We are the {} who say " {} !"' . format ( 'knights' , 'Ni' )) ...
https://man.plustar.jp/python/tutorial/inputoutput.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 5040
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ed you don't design APIs that can take both due to the difficulty of keeping the code working; as stated ... lt to do well). In Python 2 this means making sure the APIs that take text can work with unicode and thos ... e that work with binary data work with the bytes type from Python 3 (which is a subset of str ... s as an alias for bytes type in Python 2). Usually the biggest issue is realizing which methods exist on ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
19.1.11. email.header: 国際化されたヘッダ — Python 3.6.5 ドキュメント 5010
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... スコード: Lib/email/header.py This module is part of the legacy ( Compat32 ) email API. In the current API ... nd decoding of headers is handled transparently by the dictionary-like API of the EmailMessage class. In ... ul in applications that need to completely control the character sets used when encoding headers. The rem ... aining text in this section is the original documentation of the module. RFC 2822 は電 ...
https://man.plustar.jp/python/library/email.header.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 5010
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... encode ( filename ) ¶ Encode path-like filename to the filesystem encoding with 'surrogateescape' error h ... うになりました。 os. fsdecode ( filename ) ¶ Decode the path-like filename from the filesystem encoding wi ... で取得することができます。 os. getlogin ( ) ¶ Return the name of the user logged in on the controlling term ... inal of the process. For most purposes, it is more useful to u ...
https://man.plustar.jp/python/library/os.html - [similar]