The “freeze_support()” line can be omitted if the program is not going to be frozen to produce an executable.
対応方法
       if __name__ == '__main__':
           freeze_support()
           ...
   The "freeze_support()" line can be omitted if the program
   is not going to be frozen to produce an executable.
となっていますが
def main():
   ...
if __name__ == '__main__':
    main()
の形にしてあげます
指定した複数の行を一括でインデント
サクラエディタ
インデント: 行を選択して「Tab」
戻す: 行を選択して「Shift+Tab」











ディスカッション
コメント一覧
まだ、コメントがありません