Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 260 for C (0.045 sec.)
11.1. pathlib --- オブジェクト指向のファイルシステムパス — Python 3.6.5 ドキュ... 7338
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... if x . is_dir ()] [PosixPath('.hg'), PosixPath('docs'), PosixPath('dist'), PosixPath('__pycache__'), P ... 'setup.py'), PosixPath('pathlib.py'), PosixPath('docs/conf.py'), PosixPath('build/lib/pathlib.py')] ディ ... レクトリツリー内を移動します: >>> p = Path ( '/etc' ) >>> q = p / 'init.d' / 'reboot' >>> q PosixPath ... ('/etc/init.d/reboot') >>> q . resolve () PosixPath('/etc ...
https://man.plustar.jp/python/library/pathlib.html - [similar]
12.2. copyreg --- pickle サポート関数を登録する — Python 3.6.5 ドキュメント 7239
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 12. データの永続化 » 12.2. copyreg --- pickle サポート関数を登録する ¶ ソースコ ... ード: Lib/copyreg.py copyreg モジュールは、特定のオブジェクトを ... pickle する際に使われる関数を定義する手段を提供します。 ... pickle モジュールと copy モジュールは、オブジェクトを ...
https://man.plustar.jp/python/library/copyreg.html - [similar]
4. C および C++ 拡張のビルド — Python 3.6.5 ドキュメント 7110
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... の拡張と埋め込み » 4. C および C++ 拡張のビルド ¶ CPython の C 拡張は 初期 ... ます。 初期化関数のシグネチャは次のとおりです: PyObject * PyInit_modulename ( void ) ¶ この関数は初期化が ... PyModuleDef インスタンスを返します。 詳しいことは Cモジュールの初期化 を参照してください。 名前にASCIIし ... 。 多段階初期化 を使っているときは、モジュール名にASCII以外の文字も使えます。 この場合、初期化関数の名前 ...
https://man.plustar.jp/python/extending/building.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 7021
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ケンスを作成します。同じことを Python では map() と count() を組合せて map(f, count()) という形で実現でき ... 的な内積計算を実現できます: sum(map(operator.mul, vector1, vector2)) 。 Infinite iterators: イテレータ 引 ... 数 結果 使用例 count() start, [step] start, start+step, start+2*ste ... p, ... count(10) --> 10 11 12 13 14 ... cycle() p p0, p1, . ...
https://man.plustar.jp/python/library/itertools.html - [similar]
6.6. stringprep --- インターネットのための文字列調製 — Python 3.6.5 ドキュメン... 7021
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... な識別名を制限することも必要となるかもしれません。 RFC 3454 では、インターネットプロトコル上で Unicode 文 ... 処理され、その結果ある正規化された形式になります。RFC ではあるテーブルの集合を定義しており、それらはプロ ... e module stringprep only exposes the tables from RFC 3454. As these tables would be very large to repre ... sent them as dictionaries or lists, the module uses the Unicode cha ...
https://man.plustar.jp/python/library/stringprep.html - [similar]
Python モジュールのインストール (旧版) — Python 3.6.5 ドキュメント 6991
ナビゲーション 索引 モジュール | 前へ | Python » 3.6.5 ドキュメント » Python モジュールのインスト ... 全な代替として使えるでしょう。もっと詳しい情報は quick recommendations section にある Python パッケージン ... ロードしたなら、通常は以下の操作を行います: gunzip -c foo-1.0.tar.gz | tar xf - # unpacks into directory ... foo-1.0 cd foo-1.0 python setup.py install Windows では、おそ ... をダウンロードしているでしょう。アーカイブファイルを C:\Temp にダウンロードしたのなら、(WinZip のような) ...
https://man.plustar.jp/python/install/index.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 6833
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 8. データ型 » 8.3. collections --- コンテナデータ型 ¶ ソースコード: Lib ... /collections/__init__.py このモジュールは、汎用の Pyt ... hon 組み込みコンテナ dict , list , set , および tuple に代わる、特殊なコンテ ... ける append や pop を高速に行えるリスト風のコンテナ ChainMap 複数のマッピングの一つのビューを作成する辞書 ...
https://man.plustar.jp/python/library/collections.html - [similar]
5. Windows 上での C および C++ 拡張モジュールのビルド — Python 3.6.5 ドキュメン... 6674
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... の拡張と埋め込み » 5. Windows 上での C および C++ 拡張モジュールのビルド ¶ この章では Win ... dows 向けの Python 拡張モジュールを Microsoft Visual C++ を使って作成する方法について簡単に ... よう勧めます。また、Python をビルドした際に使われた C コンパイラが必要です; 通常は Microsoft Visual C++で ... .dll ) ファイルにはぶら下がり参照 (dangling reference) はありません。その代わり、関数やデータへのアクセ ...
https://man.plustar.jp/python/extending/windows.html - [similar]
整数型オブジェクト (integer object) — Python 3.6.5 ドキュメント 6645
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 具象オブジェクト (concrete object) レイヤ » 整数型オブジェクト (intege ... r object) ¶ すべての整数は任意の長さをもつ "long" 整数とし ... or, most PyLong_As* APIs return (return type)-1 which cannot be distinguished from a number. Use PyErr_ ... Occurred() to disambiguate. PyLongObject ¶ この PyObj ...
https://man.plustar.jp/python/c-api/long.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 6575
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... ありますか? コア言語 なぜ変数に値があるのに UnboundLocalError が出るのですか? Python のローカルとグローバ ... けるのですか? カンマ演算子はなぜ優先されるのですか? C の "?:" 三項演算子と等価なものはありますか? Python ... らいいですか? 文字列から後端の改行を取り除く Perl の chomp() に相当するものはありますか? scanf() や sscan ... f() と同等なものはありますか? 'UnicodeDecodeError' や 'UnicodeEncodeError' はどういう意 ...
https://man.plustar.jp/python/faq/programming.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT