Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 47 for integer (0.010 sec.)
Python で Curses プログラミング — Python 3.6.5 ドキュメント 11203
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... tring of length 1, a bytestring of length 1, or an integer. Constants are provided for extension characters; ... these constants are integers greater than 255. For example, ACS_PLMINUS is a + ... ing. getkey() does the same thing but converts the integer to a string. Individual characters are returned as ... raises an exception. The getch() method returns an integer; if it's between 0 and 255, it represents the ASCI ...
https://man.plustar.jp/python/howto/curses.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 11203
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ator for floating point presentation types and for integer presentation type 'd' . For integer presentation t ... e ( value , int ): raise ValueError ( f 'expecting integer in { self . name } ' ) instance . __dict__ [ self ... elopolsky in bpo-27661 .) decimal ¶ New Decimal.as_integer_ratio() method that returns a pair (n, d) of integ ... positive denominator: >>> Decimal ( '-3.14' ) . as_integer_ratio () (-157, 50) (Contributed by Stefan Krah am ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 10807
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ould be used anyway. If dont_inherit is a non-zero integer then the flags argument is it -- the future statem ... 貫性のあるものになりました。 hex ( x ) ¶ Convert an integer number to a lowercase hexadecimal string prefixed ... as to define an __index__() method that returns an integer. Some examples: >>> hex ( 255 ) '0xff' >>> hex ( - ... int ( x=0 ) ¶ class int ( x , base=10 ) Return an integer object constructed from a number or string x , or ...
https://man.plustar.jp/python/library/functions.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 10807
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。意味を持つのは宣言の最初の単語です。すなわち、"integer primary key" においては "integer" が読み取られます ... ティを参照してください。 SQLite はネイティブで TEXT、INTEGER、REAL、BLOB および NULL のみをサポートしています。そ ... ite は以下の型をネイティブにサポートします: NULL , INTEGER , REAL , TEXT , BLOB 。 したがって、次の Python の ... 送り込めます: Python の型 SQLite の型 None NULL int INTEGER float REAL str TEXT bytes BLOB SQLite の型から Pyt ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 10412
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ion mentions a character it can be specified as an integer, a one-character Unicode string or a one-byte byte ... oordinates. ( z is currently unused.) bstate is an integer value whose bits will be set to indicate the type ... ding to the terminfo capability name capname as an integer. Return the value -1 if capname is not a Boolean c ... ding to the terminfo capability name capname as an integer. Return the value -2 if capname is not a numeric c ...
https://man.plustar.jp/python/library/curses.html - [similar]
15. 浮動小数点演算、その問題と制限 — Python 3.6.5 ドキュメント 9622
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... スに対応するためのツールを提供しています。 float.as_integer_ratio() メソッドは float の値を有理数として表現しま ... す: >>> x = 3.14159 >>> x . as_integer_ratio () (3537115888337719, 1125899906842624) この ... 2879701896397, 36028797018963968) >>> ( 0.1 ) . as_integer_ratio () (3602879701896397, 36028797018963968) >>> ...
https://man.plustar.jp/python/tutorial/floatingpoint.html - [similar]
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 9226
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n decimal-dot notation, consisting of four decimal integers in the inclusive range 0--255, separated by dots ... (e.g. 192.168.0.1 ). Each integer represents an octet (byte) in the address. Leading ... id argument while 2001:db00::0/ffff:ff00:: not. An integer that fits into 128 bits. This is equivalent to a s ... address being address and the mask being /128 . An integer packed into a bytes object of length 16, big-endia ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
None オブジェクト — Python 3.6.5 ドキュメント 8831
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 型オブジェクト 次のトピックへ 整数型オブジェクト (integer object) ナビゲーション 索引 モジュール | 次へ | 前 ...
https://man.plustar.jp/python/c-api/none.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 8831
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... =0 ) ¶ Constructor for a FIFO queue. maxsize is an integer that sets the upperbound limit on the number of it ... =0 ) ¶ Constructor for a LIFO queue. maxsize is an integer that sets the upperbound limit on the number of it ...
https://man.plustar.jp/python/library/queue.html - [similar]
21.20. uuid --- UUID objects according to RFC 4122 — Python 3.6.5 ドキュメント 8831
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ian order as the bytes_le argument, a tuple of six integers (32-bit time_low , 16-bit time_mid , 16-bit time_ ... node ) as the fields argument, or a single 128-bit integer as the int argument. When a string of hex digits i ... ) ¶ Get the hardware address as a 48-bit positive integer. The first time this runs, it may launch a separat ...
https://man.plustar.jp/python/library/uuid.html - [similar]
PREV 1 2 3 4 5 NEXT