http://www.tagindex.com/template/form/textbox2.html
python3
プルダウンメニュー
http://www.tagindex.com/html5/form/select.html
日本語にすると505エラー
#!/usr/bin/env python3
# coding: utf-8
import sys
import io
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding=’utf-8′)
print(‘Content-type: text/html; charset=UTF-8\r\n’)
と記述すれば日本語も表示される
webアプリ 一番簡単なpython
http://hukumoto.pe-gawa.com/news/%E3%82%A8%E3%83%83%E3%82%AF%E3%82%B9%E3%82%B5%E3%83%BC%E3%83%90%E3%81%A7%E3%80%81perl%E3%83%BBruby%E3%83%BBpython%E3%82%92%E5%8B%95%E3%81%8B%E3%81%99%E3%80%82
●pythonを動かす。
1 2 3 4 5 |
#!/usr/bin/python # coding: shift_jis print "Content-Type: text/html\n\n" print "python!!!!" |
2、test.pyのパーミッションを705に変更します。
3、.htaccessを作成し、
AddHandler cgi-script .py
を書いて保存。
これで。pythonが動くようになりました。
pyファイルクリックするとすぐ閉じる
Pythonのスクリプトが記述されたファイル(.pyファイル)をダブルクリックすると、Pythonのプログラムを実行できます。しかし、この方法でプログラムを実行すると多くの場合、一瞬で処理が終わりウィンドウが閉じてしまいます。実行結果をファイルなどに保存している場合はそれでもよいですが、実行結果を確認したい場合も多いはずです。
このようなとき、
raw_input()
と書くことでウィンドウが閉じることを防げます。
raw_input関数は、標準入力から1行を読み取る関数ですが、その際にプログラムの実行が止まります。そのため、プログラムの末尾にraw_input()と書いておけば、ウィンドウが自動的に閉じないようになります。
URLオープンモジュール
1 2 |
<span class="kn">import</span> <span class="nn">re</span> <span class="kn">from</span> <span class="nn">urllib.request</span> <span class="kn">import</span> <span class="n">urlopen</span> |