Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 177 for string (0.099 sec.)
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 5462
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... il はメッセージヘッダを修正しません。 msg may be a string containing characters in the ASCII range, or a byt ... e string. A string is encoded to bytes using the ascii code ... haracters are converted to \r\n characters. A byte string is not modified. まだセッションが無い場合は、 EHLO ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
16.3. time --- 時刻データへのアクセスと変換 — Python 3.6.5 ドキュメント 5462
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 常 2 ですが、 %j は例外で 3 です。 time. strptime ( string [ , format ] ) ¶ 時刻を表現する文字列を書式に従って ... %Y" で、 ctime() が返すフォーマットに一致します。 string が format に従って解釈できなかった場合、例外 Value ... Error が送出されます。解析しようとする string が解析後に余分なデータを持っていた場合、 ValueErro ... れ、その値は (1900, 1, 1, 0, 0, 0, 0, 1, -1) です。 string も format も文字列でなければなりません。 例えば: > ...
https://man.plustar.jp/python/library/time.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 5462
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 使って虚部を示します (例。 3+5j )。 3.1.2. 文字列型 (string) ¶ Python は、数だけではなく、文字列も操作できます ... れたくない場合は、最初の引用符の前に r を付けた raw strings が使えます: >>> print ( 'C:\some \n ame' ) # here ... ときにとても役に立ちます: >>> text = ( 'Put several strings within parentheses ' ... 'to have them joined tog ... ether.' ) >>> text 'Put several strings within parentheses to have them joined together.' ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 5462
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ython 3.0 で '\u20ac' です。) 組み込みであった basestring 抽象型なんてものは削除されたのです。 str をお使いな ... 的に共通していないのです。 2to3 ツール (後述) は basestring を片っ端から str に置き換えてくれます。 テキストフ ... ト内での貢献者の名前以外では ASCII だけのままです。) StringIO および cStringIO モジュールは廃止されました。その ... モジュールをインポートして、テキストやデータには io.StringIO や io.BytesIO を使用してください。 Unicode HOWTO ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 5384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... tp_flags ; const char * tp_doc ; /* Documentation string */ /* call function for all accessible objects */ ... は Python スクリプトリファレンス obj.__doc__ が doc string を返すときの文字列 (あるいはそのアドレス) を入れま ... ypeobject * obj ) { return PyUnicode_FromFormat ( "Stringified_newdatatype{{size:%d}}" , obj -> obj_Underlyi ... ml_flags ; /* flags */ const char * ml_doc ; /* docstring */ } PyMethodDef ; その型が提供する各メソッドについ ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 5384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... andler alternate : cfg://handlers.file The literal string 'cfg://handlers.file' will be resolved in an analo ... gous way to strings with the ext:// prefix, but looking in the config ... g.Formatter The format entry is the overall format string, and the datefmt entry is the strftime() -compatib ... le date/time format string. If empty, the package substitutes ISO8601 format ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 5384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ilable ciphers for this SSL object. It should be a string in the OpenSSL cipher list format . do_handshake_o ... 0_POLY1305_SHA256 were added to the default cipher string. 18.2.1.3. 乱数生成 ¶ ssl. RAND_bytes ( num ) ¶ 暗 ... 書を返します。 ssl. PEM_cert_to_DER_cert ( PEM_cert_string ) ¶ PEM 形式のASCII文字列として与えられた証明書から ... のみ呼び出されます。その関数は引数なしで呼び出され、string, bytes, または bytearray を返さなければなりません。 ...
https://man.plustar.jp/python/library/ssl.html - [similar]
文字列の変換と書式化 — Python 3.6.5 ドキュメント 5317
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 存な文字列から数値への変換を行ないます。 double PyOS_string_to_double ( const char *s , char **endptr , PyObje ... します。 バージョン 3.1 で追加. char* PyOS_double_to_string ( double val , char format_code , int precision , ...
https://man.plustar.jp/python/c-api/conversion.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 5317
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 's stdin. If used it must be a byte sequence, or a string if encoding or errors is specified or universal_ne ... out from the child process. A bytes sequence, or a string if run() was called with an encoding or errors. No ... err from the child process. A bytes sequence, or a string if run() was called with an encoding or errors. No ... streams were opened in text mode, input must be a string. Otherwise, it must be bytes. communicate() return ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 5317
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... タフェースに合わせた view を提供します。 >>> import string >>> m = memoryview ( string . letters ) >>> m <mem ... cannot modify read-only memory >>> b = bytearray ( string . letters ) # Creating a mutable object >>> b byte ... るようになります。例えば: >>> import ConfigParser , StringIO >>> sample_config = """ ... [mysqld] ... user = ... er ( allow_no_value = True ) >>> config . readfp ( StringIO . StringIO ( sample_config )) >>> config . get ( ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]