Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 80 for while (0.029 sec.)
辞書オブジェクト (dictionary object) — Python 3.6.5 ドキュメント 7766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ば: PyObject * key , * value ; Py_ssize_t pos = 0 ; while ( PyDict_Next ( self -> dict , & pos , & key , & v ... す: PyObject * key , * value ; Py_ssize_t pos = 0 ; while ( PyDict_Next ( self -> dict , & pos , & key , & v ...
https://man.plustar.jp/python/c-api/dict.html - [similar]
拡張と埋め込み FAQ — Python 3.6.5 ドキュメント 7766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... ッセージ文字列を展開し、それを文字列 "unexpected EOF while parsing" と比較します。ここに GNU readline library ... g ( glb , "__builtins__" , PyEval_GetBuiltins ()); while ( ! done ) { line = readline ( prompt ); if ( NULL ... msg , & obj ) && ! strcmp ( msg , "unexpected EOF while parsing" )) /* E_EOF */ { Py_XDECREF ( exc ); Py_X ...
https://man.plustar.jp/python/faq/extending.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 7766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... reating a pad requires the pad's height and width, while refreshing a pad requires giving the coordinates o ... loop of your program may look something like this: while True : c = stdscr . getch () if c == ord ( 'p' ): ... ocument () elif c == ord ( 'q' ): break # Exit the while loop elif c == curses . KEY_HOME : x = y = 0 The c ...
https://man.plustar.jp/python/howto/curses.html - [similar]
28. ソフトウェア・パッケージと配布 — Python 3.6.5 ドキュメント 7766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ou with publishing and installing Python software. While these modules are designed to work in conjunction ...
https://man.plustar.jp/python/library/distribution.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 7766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... wo elements defines the next ... a , b = 0 , 1 >>> while b < 10 : ... print ( b ) ... a , b = b , a + b ... ... れます。右辺の式は、左から右へと順番に評価されます。 while は、条件 (ここでは b < 10 ) が真である限り実行を繰 ... 列を末尾に出力したりできます: >>> a , b = 0 , 1 >>> while b < 1000 : ... print ( b , end = ',' ) ... a , b = ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
イテレータプロトコル (iterator protocol) — Python 3.6.5 ドキュメント 7520
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... if ( iterator == NULL ) { /* propagate error */ } while ( item = PyIter_Next ( iterator )) { /* do somethi ...
https://man.plustar.jp/python/c-api/iter.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 7520
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... before PyArg_ParseTupleAndKeywords() was created. While functions using this approach can often be convert ... suffix to every line of Clinic's generated output. While changing Clinic's output in this manner can be a b ... ic is to output everything into the current block; while many people consider this hampers readability, it ... need this for, but I thought maybe it'd be useful while someone's experimenting.) The fourth new directive ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
ソケットプログラミング HOWTO — Python 3.6.5 ドキュメント 7520
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソケ ... まで来た。では、ウェブサーバのメインループに入ろう: while True : # accept connections from outside ( clients ... , port )) def mysend ( self , msg ): totalsent = 0 while totalsent < MSGLEN : sent = self . sock . send ( m ... def myreceive ( self ): chunks = [] bytes_recd = 0 while bytes_recd < MSGLEN : chunk = self . sock . recv ( ...
https://man.plustar.jp/python/howto/sockets.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 7520
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : build ( dp ) if not digits : build ( '0' ) i = 0 while digits : build ( next ()) i += 1 if i == 3 and dig ... , n , na , d , da = 0 , three , 3 , 1 , 0 , 0 , 24 while s != lasts : lasts = s n , na = n + na , na + 8 d ... = 2 i , lasts , s , fact , num = 0 , 0 , 1 , 1 , 1 while s != lasts : lasts = s i += 1 fact *= i num *= x s ... ts , s , fact , num , sign = 0 , 0 , 1 , 1 , 1 , 1 while s != lasts : lasts = s i += 2 fact *= i * ( i - 1 ...
https://man.plustar.jp/python/library/decimal.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 7259
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 型の比較は isinstance(x, SomeClass) に変換されます。 while 1 は while True になります。また、適切な場所では s ...
https://man.plustar.jp/python/library/2to3.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT