Webアプリ: Python3でファイル入出力の後にprintできない場合の対処法
割とよく起こるのでフレームワークを使わずにWebアプリを作ろうとして困っている方が多いと思います。
ファイル入出力の際のエンコードをcodecsモジュールで指定すればうまくいきます。
sample.py
# -*- coding: utf-8 -*-
import codecs
with codecs.open("sample.html", "r", "utf8") as f:
tmp = f.read()
print("Content-type: text/html; charset=utf-8;\n")
print(tmp)
Webアプリ制作頑張ってくださいね。
Author And Source
この問題について(Webアプリ: Python3でファイル入出力の後にprintできない場合の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/tatsuki_dev/items/37ac4f80cf600fcfde94著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .