Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 249 for FOR (0.097 sec.)
27.5. timeit --- 小さなコード断片の実行時間計測 — Python 3.6.5 ドキュメント 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 示しています。 $ python3 -m timeit '"-".join(str(n) for n in range(100))' 10000 loops, best of 3: 30.2 use ... c per loop $ python3 -m timeit '"-".join([str(n) for n in range(100)])' 10000 loops, best of 3: 27.5 us ... port timeit >>> timeit . timeit ( '"-".join(str(n) for n in range(100))' , number = 10000 ) 0.30186118488 ... 20001 >>> timeit . timeit ( '"-".join([str(n) for n in range(100)])' , number = 10000 ) 0.2727368790 ...
https://man.plustar.jp/python/library/timeit.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... super ( D , self ) . save () # Save D's private information here ... super() は super(class) や super(cl ... 反復されるのか定義出来ます。 2.1 までの Python では for item in obj が動作するようにするための手段は普通、 ... ブジェクトへの添え字操作を定義するのに使うものです。 for ループをサポートするためだけにこれを使うことは、少 ... ine 1 , in ? StopIteration >>> 2.2 では、Python の for ステートメントはもはやシーケンスであることを要求し ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 5131
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... さんの素敵な機能を持っています。Pythonwin は Python for Windows Extensions プロジェクトの一部、あるいは Ac ... ために改変したものです。Pydb は http://bashdb.sourceforge.net/pydb/ に、 DDD は https://www.gnu.org/softwa ... 解析ツールです。PyChecker は http://pychecker.sourceforge.net/ から手に入ります。 Pylint も、モジュールがコ ... nboundLocalError : local variable 'x' referenced before assignment これは、あるスコープの中で変数に代入を ...
https://man.plustar.jp/python/faq/programming.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 5131
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... cter range, \b represents the backspace character, for compatibility with Python's string literals. \B Ma ... インフラグはありません。 re. I ¶ re. IGNORECASE ¶ Perform case-insensitive matching; expressions like [A-Z] ... matching is already enabled by default in Python 3 for Unicode (str) patterns, and it is able to handle d ... lt will start with an empty string. The same holds for the end of the string: >>> re . split ( r '(\W+)' ...
https://man.plustar.jp/python/library/re.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 5131
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ZIP archive is appended to the file. This is meant for adding a ZIP archive to another file (such as pyth ... で変更: Previously, a plain RuntimeError was raised for unrecognized compression values. バージョン 3.6.2 ... 。 ZipFile. open ( name , mode='r' , pwd=None , * , force_zip64=False ) ¶ Access a member of the archive a ... is not known in advance but may exceed 2 GiB, pass force_zip64=True to ensure that the header format is c ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます: class queue. Queue ( maxsize=0 ) ¶ Constructor for a FIFO queue. maxsize is an integer that sets the ... class queue. LifoQueue ( maxsize=0 ) ¶ Constructor for a LIFO queue. maxsize is an integer that sets the ... q . task_done () q = queue . Queue () threads = [] for i in range ( num_worker_threads ): t = threading . ... get = worker ) t . start () threads . append ( t ) for item in source (): q . put ( item ) # block until ...
https://man.plustar.jp/python/library/queue.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... >= 1.1.1. There is no dedicated PROTOCOL constant for just TLS 1.3. 注釈 どの接続が成功するかは、 OpenSS ... 。 The ciphers parameter sets the available ciphers for this SSL object. It should be a string in the Open ... SSL cipher list format . do_handshake_on_connect 引数は、 socket.conne ... ントロピー収集デーモンについては、 http://egd.sourceforge.net/ や http://prngd.sourceforge.net/ を参照して ...
https://man.plustar.jp/python/library/ssl.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... から動き出すロボット亀を想像してみて下さい。 turtle.forward(15) という命令を出すと、その亀が (スクリーン上 ... or ( 'red' , 'yellow' ) begin_fill () while True : forward ( 200 ) left ( 170 ) if abs ( pos ()) < 1 : br ... . Turtle のメソッド ¶ Turtle の動き 移動および描画 forward() | fd() backward() | bk() | back() right() | ... ctor() settiltangle() tiltangle() tilt() shapetransform() get_shapepoly() イベントを利用する onclick() on ...
https://man.plustar.jp/python/library/turtle.html - [similar]
3. Windows で Python を使う — Python 3.6.5 ドキュメント 5090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... Y または %ProgramFiles(x86)%\Python X.Y DefaultJustForMeTargetDir 自分一人用インストールのためのデフォルト ... t=0 SimpleInstall=1 SimpleInstallDescription="Just for me, no test suite." (ランチャのインストールを省略す ... /> <Option Name= "SimpleInstallDescription" > Just for me, no test suite </Option> </Options> 3.1.5. ダウ ... ているプラットフォームについての詳細な情報は Python for Windows を参照してください。 参考 Python on XP "7 ...
https://man.plustar.jp/python/using/windows.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 5060
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... s a subset of str in Python 2 and acts as an alias for bytes type in Python 2). Usually the biggest issue ... ist on which types in Python 2 & 3 simultaneously (for text that's unicode in Python 2 and str in Python ... 3, for binary that's str / bytes in Python 2 and bytes in ... type. テキストデータ バイナリデータ decode encode format isdecimal isnumeric 処理の区別を簡単にするには、 ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT