Python3の基本

ドキュメント

Python3インタプリタの使い方

Python3インタプリタの使い方
% python3
Python 3.4.2 (default, Oct 19 2014, 17:50:17)
[GCC 4.2.1 Compatible Apple LLVM 5.1 (clang-503.0.40)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> quit()

ソースコードの書き方

文字コード

エンコーディングの指定方法
# -*- coding: encoding -*-
エンコーディングの指定方法 - Windows
# -*- coding: cp-1252 -*-

関連