Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 9 of about 9 for age (0.024 sec.)
ソート HOW TO — Python 3.6.5 ドキュメント 13840
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソー ... , key = lambda student : student [ 2 ]) # sort by age [('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A ... Student : ... def __init__ ( self , name , grade , age ): ... self . name = name ... self . grade = grade ... ... self . age = age ... def __repr__ ( self ): ... return repr ( ... ( self . name , self . grade , self . age )) >>> student_objects = [ ... Student ( 'john' , ...
https://man.plustar.jp/python/howto/sorting.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 9778
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... gs will be encoded in UTF-8, unless you stored garbage in the # database ... assert row [ 0 ] == AUSTRIA ... ) cur . execute ( "create table people (name_last, age)" ) who = "Yeltsin" age = 72 # This is the qmark s ... ute ( "insert into people values (?, ?)" , ( who , age )) # And this is the named style: cur . execute ( ... "select * from people where name_last=:who and age=:age" , { "who" : who , "age" : age }) print ( cur ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 8466
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... に従うようになっており、RFC 2109 で導入された max-age や port などのクッキー属性にも注意を払います。 注釈 ... おまかにしか似ていません。 RFC 2109 - HTTP State Management Mechanism Obsoleted by RFC 2965. Uses Set-Cook ... ie with version=1. RFC 2965 - HTTP State Management Mechanism Netscape プロトコルのバグを修正したも ... rrata to RFC 2965. RFC 2964 - Use of HTTP State Management 21.24.1. CookieJar および FileCookieJar オブジ ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
10. 標準ライブラリミニツアー — Python 3.6.5 ドキュメント 8466
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ons> >>> help ( os ) <returns an extensive manual page created from the module's docstrings> ファイルやデ ... ithmetic >>> birthday = date ( 1964 , 7 , 31 ) >>> age = now - birthday >>> age . days 14368 10.9. データ ... コードが正しい事を確認できるようになります: def average ( values ): """Computes the arithmetic mean of a l ... ist of numbers. >>> print(average([20, 30, 70])) 40.0 """ return sum ( values ) / le ...
https://man.plustar.jp/python/tutorial/stdlib.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 8196
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... に取り除くには、 del を使ってください: >>> c [ 'sausage' ] = 0 # counter entry with a zero count >>> del c ... [ 'sausage' ] # del actually removes the entry バージョン 3.1 ... た要素のシーケンスを保持することです: def moving_average ( iterable , n = 3 ): # moving_average([40, 30, 50 ... 5.0 43.0 # http://en.wikipedia.org/wiki/Moving_average it = iter ( iterable ) d = deque ( itertools . isl ...
https://man.plustar.jp/python/library/collections.html - [similar]
21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 8196
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... は互いに独立しています。 RFC 2109 - HTTP State Management Mechanism このモジュールが実装しているHTTPの状 ... 定数となっています。 expires path comment domain max-age secure version httponly httponly 属性は、 cookie が ...
https://man.plustar.jp/python/library/http.cookies.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 8016
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... et statistics about the SSL sessions created or managed by this context. A dictionary is returned which m ... ', b'Accept-Ranges: bytes', b'Via: 1.1 varnish', b'Age: 2188', b'X-Served-By: cache-lcy1134-LCY', b'X-Cac ... b'Vary: Cookie', b'Strict-Transport-Security: max-age=63072000; includeSubDomains', b'Connection: close' ... Electronic Mail: Part II: Certificate-Based Key Management Steve Kent RFC 4086: Randomness Requirements f ...
https://man.plustar.jp/python/library/ssl.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 7927
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ize = property ( get_size , set_size , None , "Storage size of this instance" ) これは確実に、より明快であ ... d benefit to this (actually, there is the disadvantage that you have to change your PATH to be able to fi ... ibly using Python as a standard OSA scripting language and much more." Most of the MacPython toolbox modu ... rs used Wise 5.0a, which was beginning to show its age. (Packaged up by Tim Peters.) ファイル名が .pyw で ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7927
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... linefeed (ASCII character 10), MacOS uses the carriage return (ASCII character 13), and Windows uses a tw ... o-character sequence of a carriage return plus a newline. Python のファイルオブジェク ... information' ) logging . info ( 'Informational message' ) logging . warning ( 'Warning:config file %s not ... egister will collect the metadata describing a package, such as its name, version, maintainer, descriptio ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
PREV 1 NEXT