情報学部 | 菅沼ホーム | 目次 | 索引 |
> Python
> py -2 # Python 2.* の実行 > py -3 # Python 3.* の実行
01 >>> print(2 + 3) 02 5 03 >>> 3 + 4 04 7 05 >>> 10 + _ 06 17 07 >>> a = 10 08 >>> if a == 10: 09 ... print(a) 10 ... 11 10 12 >>> 'abc' 13 'abc'
>>> c = 3 + 4 >>> 10 + c
if (a == 10) cout << a;
py -3 -c print(2+3) # 一般形: python -c command [arg] ...
# -*- coding: UTF-8 -*- a = 10 b = 20 print(a + b)
py -3 cal1.py # 一般形: python ファイル名 [arg] ...
# -*- coding: UTF-8 -*- def add(a, b): c = a + b print(c) def sub(a, b): c = a - b print(c)
>>> import cal2 >>> cal2.add(2,3) 5 >>> cal2.sub(2,3) -1
>>> from cal2 import add
>>> from cal2 import *
py -3 cal2.py 2 3
if __name__ == "__main__": import sys add(int(sys.argv[1]), int(sys.argv[2]))
py -3 cal2.py 2 3 py -3 -m cal2 2 3
a = abc + efg * xxx \ + aaa - bbb / ccc \ + yyy / 30 + hhh # ~ に関する計算
aaa = [1, 2, 3, # ~ 4, 5, 6, # ~ 7, 8, 9] # ~
01 if (条件) { 02 a = 10; 03 b = 20; 04 } 05 else { 06 c = 30; 07 d = 40; 08 }
01 if 条件 : 02 a = 10 03 b = 20 04 else : 05 c = 30 06 d = 40
a = 10 # 変数 a に 10 を代入
# -*- coding: UTF-8 -*-
""" コメント・・・ コメント・・・ """
情報学部 | 菅沼ホーム | 目次 | 索引 |