Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 22 for window (0.031 sec.)
- 16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 15083
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
rses が最も広く用いられているのは Unix 環境ですが、Windows、DOS で利用できるバージョンもあり、おそらく他のシ...
erations such as addstr() have been performed on a window. The normal refresh() call is simply noutrefresh()...
wed by doupdate() ; if you have to update multiple windows, you can speed performance and perhaps reduce scr...
een flicker by issuing noutrefresh() calls on all windows, followed by a single doupdate() . curses. echo (...
- https://man.plustar.jp/python/library/curses.html - [similar]
- Python で Curses プログラミング — Python 3.6.5 ドキュメント 10487
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth
...
n of a display containing multiple non-overlapping windows of text. The contents of a window can be changed...
イエタリ Unix は全てには対応していないでしょう。 The Windows version of Python doesn't include the curses modu...
ata structures. If successful, initscr() returns a window object representing the entire screen; this is usu...
tion's message and traceback. ウィンドウとパッド ¶ Windows are the basic abstraction in curses. A window obj...
- https://man.plustar.jp/python/howto/curses.html - [similar]
- 13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 9999
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
t controls the size of the history buffer (or the "window size") used when compressing data, and whether a h...
X_WBITS): +9 to +15: The base-two logarithm of the window size, which therefore ranges between 512 and 32768...
-9 to -15: Uses the absolute value of wbits as the window size logarithm, while producing a raw output strea...
(9 to 15): Uses the low 4 bits of the value as the window size logarithm, while including a basic gzip heade...
- https://man.plustar.jp/python/library/zlib.html - [similar]
- 25.5. IDLE — Python 3.6.5 ドキュメント 9764
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
n でコーディングされています クロスプラットホーム: Windows, Unix, Mac OS X で動作します コード入力、出力、エ...
ファイルを変えずに異なるファイルに保存します。 Print Window [ウィンドウを印刷] 現在のウィンドウをデフォルトプリ...
設定], text color themes [テキスト色テーマ], startup windows and size [IDLE 開始時についての設定 (Shell から開...
ウィンドウのみ) Open a pane at the top of the edit window which shows the block context of the code which ha...
- https://man.plustar.jp/python/library/idle.html - [similar]
- 24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 8636
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
etshapes() register_shape() | addshape() turtles() window_height() window_width() Input methods textinput()...
: title -- string prompt -- string Pop up a dialog window for input of a string. Parameter title is the titl...
e of the dialog window, prompt is a text mostly describing what informati...
ional) maxval -- number (optional) Pop up a dialog window for input of a number. title is the title of the d...
- https://man.plustar.jp/python/library/turtle.html - [similar]
- Windows 上の Python FAQ — Python 3.6.5 ドキュメント 8383
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問
...
» Windows 上の Python FAQ ¶ 目次 Windows 上の Python FAQ Py...
thon プログラムを Windows で動かすにはどうしますか? Python スクリプトを実行...
ますか? *.pyd ファイルは DLL と同じですか? Python を Windows アプリケーションに埋め込むにはどうしたらいいですか...
ことなく押鍵を検出するにはどうしますか? os.kill() を Windows で模倣するにはどうしますか? ダウンロードされたドキ...
- https://man.plustar.jp/python/faq/windows.html - [similar]
- 21.1. webbrowser --- 便利なウェブブラウザコントローラー — Python 3.6.5 ドキュメ... 8097
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
enericBrowser('lynx') 'w3m' GenericBrowser('w3m') 'windows-default' WindowsDefault (2) 'macosx' MacOSX('defa...
作させるのに最も良い方法が実装によって選択されます。 Windowsプラットフォームのみ。 Mac OS X プラットフォームの...
python.org/' # Open URL in a new tab, if a browser window is already open. webbrowser . open_new_tab ( url )...
# Open URL in new window, raising the window if possible. webbrowser . open...
- https://man.plustar.jp/python/library/webbrowser.html - [similar]
- 4. その他の制御フローツール — Python 3.6.5 ドキュメント 7811
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア
...
>>> # Measure some strings: ... words = [ 'cat' , 'window' , 'defenestrate' ] >>> for w in words : ... print...
( w , len ( w )) ... cat 3 window 6 defenestrate 12 ループ内部でイテレートしているシ...
t ( 0 , w ) ... >>> words ['defenestrate', 'cat', 'window', 'defenestrate'] for w in words: を使った場合は、...
- https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
- Argument Clinic How-To — Python 3.6.5 ドキュメント 7760
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu
...
f its required argument! Another example is curses.window.addch() , which has a group of two arguments that...
these parameters. As an example, here's how curses.window.addch uses optional groups to make the first two p...
e last parameter optional: /*[clinic input] curses.window.addch [ x: int X-coordinate. y: int Y-coordinate....
- https://man.plustar.jp/python/howto/clinic.html - [similar]
- 16.13. curses.panel --- curses のためのパネルスタック拡張 — Python 3.6.5 ドキュ... 7760
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
を返します。任意の Python オブジェクトです。 Panel. window ( ) ¶ パネルに関連付けられているウィンドウオブジェ...
- https://man.plustar.jp/python/library/curses.panel.html - [similar]