Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 12 for demo (0.006 sec.)
- 4. C および C++ 拡張のビルド — Python 3.6.5 ドキュメント 14645
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...re import setup , Extension module1 = Extension ( 'demo' , sources = [ 'demo.c' ]) setup ( name = 'Package...Name' , version = '1.0' , description = 'This is a demo package' , ext_modules = [ module1 ]) この setup.p...y とファイル demo.c があるとき、以下のコマンド python setup . py bui...ld を実行すると、 demo.c をコンパイルして、 demo という名前の拡張モジュー... - https://man.plustar.jp/python/extending/building.html - [similar]
- 20.7. xml.dom.minidom --- 最小限の DOM の実装 — Python 3.6.5 ドキュメント 8773
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...ml.dom.minidom document = """ \ <slideshow> <title>Demo slideshow</title> <slide><title>Slide title</title...> <point>This is a demo</point> <point>Of a program for processing slides<.../point> </slide> <slide><title>Another demo slide</title> <point>It is important</point> <poin... - https://man.plustar.jp/python/library/xml.dom.minidom.html - [similar]
- What's New In Python 3.2 — Python 3.6.5 ドキュメント 8560
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...mport getgeneratorstate >>> def gen (): ... yield 'demo' >>> g = gen () >>> getgeneratorstate ( g ) 'GEN_C...REATED' >>> next ( g ) 'demo' >>> getgeneratorstate ( g ) 'GEN_SUSPENDED' >>> n...itial patch by Victor Stinner in bpo-9124 .) turtledemo ¶ The demonstration code for the turtle module was...moved from the Demo directory to main library. It includes over a doze... - https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
- Logging クックブック — Python 3.6.5 ドキュメント 8472
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg
...xtual information, we just use random data in this demo. """ USERS = [ 'jim' , 'fred' , 'sheila' ] IPS = [...t multiprocessing # Next two import lines for this demo only from random import choice , random import tim...derr ) # Arrays used for random selections in this demo LEVELS = [ logging . DEBUG , logging . INFO , logg...) root . addHandler ( h ) # send all messages, for demo; no other level or filter logic applied. root . se... - https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
- 21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 8472
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...例: from wsgiref.simple_server import make_server , demo_app with make_server ( '' , 8000 , demo_app ) as h...t httpd . handle_request () wsgiref.simple_server. demo_app ( environ , start_response ) ¶ この関数は小規模... - https://man.plustar.jp/python/library/wsgiref.html - [similar]
- 10. 標準ライブラリミニツアー — Python 3.6.5 ドキュメント 8472
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア
...して保存されています。例えば、以下の出力は、 python demo.py one two three とコマンドライン上で起動した時に得...ものです: >>> import sys >>> print ( sys . argv ) ['demo.py', 'one', 'two', 'three'] getopt モジュールは、... - https://man.plustar.jp/python/tutorial/stdlib.html - [similar]
- 25.5. IDLE — Python 3.6.5 ドキュメント 8260
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...いずれも何もしていなければ英語。下記参照。) Turtle Demo [Turtle デモ] turtledemo モジュールを実行します。...3.4 では使える。) なお turtle デモはソース配布物の Demo/turtle に含まれています。IDLE から起動するのはその...中のメインモジュール turtleDemo.py 。) 追加のヘルプソースを Options -> Configure I... - https://man.plustar.jp/python/library/idle.html - [similar]
- 24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 8171
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...者が前者の設定をオーバーライドします。 The Lib/turtledemo directory contains a turtle.cfg file. You can stud...as an example and see its effects when running the demos (preferably not from within the demo-viewer). 24....1.7. turtledemo --- デモスクリプト ¶ ` turtledemo`パッケージには一...アを使用して実行および表示できます: python - m turtledemo あるいは、個別にデモスクリプトを実行できます。たと... - https://man.plustar.jp/python/library/turtle.html - [similar]
- Argparse チュートリアル — Python 3.6.5 ドキュメント 8101
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp
...m-unused-function.patch $ ls pypy ctypes_configure demo dotviewer include lib_pypy lib-python ... $ ls -l... - https://man.plustar.jp/python/howto/argparse.html - [similar]
- 正規表現 HOWTO — Python 3.6.5 ドキュメント 8030
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規
...now been reached, and it has matched 'abcb' . This demonstrates how the matching engine goes as far as it...利用できれば、Python に含まれるデモプログラム Tools/demo/redemo.py を見るといいかもしれません。このデモは正...入力し、正規表現がマッチしたかどうかを表示します。 redemo.py は複雑な正規表現のデバッグを試みるときにも便利に...M' , or 'ſpam' (the latter is matched only in Unicode mode). This lowercasing doesn't take the current loc... - https://man.plustar.jp/python/howto/regex.html - [similar]
