Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 274 for IN (0.077 sec.)
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 5696
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 定義されているもの) だけでなくRSAのMD5アルゴリズム (Internet RFC 1321 で定義されています)も実装しています ... と blake2s() が追加されました。 たとえば、 b'Nobody inspects the spammish repetition' というバイト文字列の ... m = hashlib . sha256 () >>> m . update ( b "Nobody inspects" ) >>> m . update ( b " the spammish repetit ... このようになります: >>> hashlib . sha224 ( b "Nobody inspects the spammish repetition" ) . hexdigest () 'a ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 5637
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... 表現 HOWTO ¶ 著者: A.M. Kuchling < amk @ amk . ca > 概要 このドキュメントは re モジ ... や ',' または '.' にマッチする文字クラスです。 The final metacharacter in this section is . . It matches ... anything except a newline character, and there's an altern ... mode ( re.DOTALL ) where it will match even a newline. . is often used where you want to match "any cha ...
https://man.plustar.jp/python/howto/regex.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 5637
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... イブは実行時にアーカイブ内の myapp モジュールから main 関数を実行します。 $ python -m zipapp myapp -m "my ... app:main" $ python myapp.pyz <output from myapp> 28.4.2. コ ... イブ化し、保存先アーカイブへコピーします。(または --info オプションが指定されている場合はファイルのシェバ ... ut を必ず source とは別の名前にしてください。) -p <interpreter> , --python =<interpreter> ¶ 実行コマンド ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 5608
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... アント ¶ ソースコード: Lib/ftplib.py This module defines the class FTP and a few related items. The FTP c ... orm a variety of automated FTP jobs, such as mirroring other FTP servers. It is also used by the module ... llib.request to handle URLs that use FTP. For more information on FTP (File Transfer Protocol), see Inte ... rg' ) # connect to host, default port >>> ftp . login () # user anonymous, passwd anonymous@ '230 Login ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
8. エラーと例外 — Python 3.6.5 ドキュメント 5608
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 8.1. 構文エラー ¶ 構文エラーは構文解析エラー (parsing error) としても知られており、Python を勉強している ... 最もよく遭遇する問題の一つでしょう: >>> while True print ( 'Hello world' ) File "<stdin>" , line 1 while T ... rue print ( 'Hello world' ) ^ SyntaxError : invalid syntax ... こで検出されています)。上記の例では、エラーは関数 print() で検出されています。コロン ( ':' ) がその前に無 ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 5608
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New in Python 2.5 ¶ 著者: A.M. Kuchling この文書は Python ... リングを行えるようになりました( PEP 341: try/except/finally の一体化 セクション)。これらのどの改善も価値が ... る PEP を参照してください。可能な限り、 "What's New in Python" は各変更の bug や patch に対してリンクして ... さい: # First version -- no parens level = 1 if logging else 0 # Second version -- with parens level = ( ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 5579
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New in Python 2.0 ¶ 著者: A.M. Kuchling and Moshe Zadka は ... 味を示すべきでしょうか? おそらく答えはノーです。1.6final と 2.0beta1 のリリースは同じ日に行われ (2000 年 ... n/ にあります(訳注: 2015 年現在の状況は What's New in Python 2.6 参照)。 SourceForge で現在ホストされてい ... で通知しますが、これは全く助けにならないもので、Ka-Ping Yee はもっと有用なメッセージを送信するための HTML ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 5491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New in Python 2.2 ¶ 著者: A.M. Kuchling はじめに ¶ この文 ... 、高速化もします。小さなオマケとして、属性にも docstring を持てるようになりました。 slots を使って、インス ... ブクラス化すれば良いです: class C ( object ): def __init__ ( self ): ... ... これは、Python 2.2 では、基底 ... トイン)として利用可能です。Python は既に組み込み関数 int() , float() , str() を持っていました。2.2 にはその ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 5472
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... od which by default returns None . See also the definition of コンテキストマネージャ型 . バージョン 3.6 ... e (this is not recommended as a real way of generating HTML!): from contextlib import contextmanager @co ... ntextmanager def tag ( name ): print ( "< %s >" % name ) yield print ( "</ %s >" % nam ... e ) >>> with tag ( "h1" ): ... print ( "foo" ) ... < h1 > foo </ h1 > デコレート対象の ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 5443
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... command = 'ls -l {} ' . format ( filename ) >>> print ( command ) # executed by a shell: boom! ls -l so ... = 'ls -l {} ' . format ( quote ( filename )) >>> print ( command ) ls -l 'somefile; rm -rf ~' >>> remote ... 'ssh home {} ' . format ( quote ( command )) >>> print ( remote_command ) ssh home 'ls -l '"'"'somefile; ... ルは以下のクラスを定義します。 class shlex. shlex ( instream=None , infile=None , posix=False , punctuati ...
https://man.plustar.jp/python/library/shlex.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT