Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 76 for result (0.020 sec.)
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 6691
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... True , these non-alphabet characters in the input result in a binascii.Error . base64. standard_b64encode ( ... ase64 alphabet, and return the encoded bytes . The result can still contain = . base64. urlsafe_b64decode ( ... he contents of the binary input file and write the resulting base64 encoded data to the output file. input a ...
https://man.plustar.jp/python/library/base64.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 6691
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = calculate_something () s = + s # Round the final result back to the default precision 新たなコンテキストは ... igits , exp = value . quantize ( q ) . as_tuple () result = [] digits = list ( map ( str , digits )) build , ... next = result . append , digits . pop if sign : build ( trailneg ... g if sign else pos ) return '' . join ( reversed ( result )) def pi (): """Compute Pi to the current precisi ...
https://man.plustar.jp/python/library/decimal.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 6691
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... number to an octal string prefixed with "0o". The result is a valid Python expression. If x is not a Python ... od as a regular function and do something with its result. This is needed in some cases where you need a ref ... ter ( it ) for it in iterables ] while iterators : result = [] for it in iterators : elem = next ( it , sent ... inel ) if elem is sentinel : return result . append ( elem ) yield tuple ( result ) イテラブル ...
https://man.plustar.jp/python/library/functions.html - [similar]
引数の解釈と値の構築 — Python 3.6.5 ドキュメント 6594
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... * object ; PyObject * callback = NULL ; PyObject * result = NULL ; if ( PyArg_UnpackTuple ( args , "ref" , 1 ... , 2 , & object , & callback )) { result = PyWeakref_NewRef ( object , callback ); } return ... result ; } この例における PyArg_UnpackTuple() 呼び出しは、 ...
https://man.plustar.jp/python/c-api/arg.html - [similar]
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 6594
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s value is used to set the tzinfo attribute of the result, otherwise the tzinfo attribute of the time argume ... me2 + timedelta == datetime1. As for addition, the result has the same tzinfo attribute as the input datetim ... stment of date or time data is performed. Else the result is local time in the timezone tz , representing th ... apturing the platform's idea of local time. # (May result in wrong values on historical times in # timezones ...
https://man.plustar.jp/python/library/datetime.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 6594
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... enates count strings from the stack and pushes the resulting string onto the stack. バージョン 3.6 で追加. B ... tack, joins them in a single tuple, and pushes the result. Implements iterable unpacking in tuple displays ( ... rges them into a single dictionary, and pushes the result. Implements dictionary unpacking in dictionary dis ... matting is performed using PyObject_Format() . The result is pushed on the stack. バージョン 3.6 で追加. HAV ...
https://man.plustar.jp/python/library/dis.html - [similar]
6. モジュール (module) — Python 3.6.5 ドキュメント 6594
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... def fib2 ( n ): # return Fibonacci series up to n result = [] a , b = 0 , 1 while b < n : result . append ( ... b ) a , b = b , a + b return result 次に Python インタプリタに入り、モジュールを以下の ...
https://man.plustar.jp/python/tutorial/modules.html - [similar]
データ整列化 (data marshalling) のサポート — Python 3.6.5 ドキュメント 6497
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... that reading past the end of the file will always result in a negative numeric value (where that's relevant ...
https://man.plustar.jp/python/c-api/marshal.html - [similar]
1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 6497
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ECREF ( pArgs ); if ( pValue != NULL ) { printf ( "Result of call: %ld \n " , PyLong_AsLong ( pValue )); Py_ ... call multiply multiply 3 2 Will compute 3 times 2 Result of call: 6 この程度の機能を実現するにはプログラムが ...
https://man.plustar.jp/python/extending/embedding.html - [similar]
9.2. math --- 数学関数 — Python 3.6.5 ドキュメント 6497
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... th import exp , expm1 >>> exp ( 1e-5 ) - 1 # gives result accurate to 11 places 1.0000050000069649e-05 >>> e ... xpm1 ( 1e-5 ) # result accurate to full precision 1.0000050000166668e-05 ...
https://man.plustar.jp/python/library/math.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT