練習問題/解答例/干支を求めるプログラム/Python
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[練習問題]]
# -*- coding: utf-8 -*-
a = u'庚辛壬癸甲乙丙丁戊己'
b = u'申酉戌亥子丑寅卯辰巳午未'
y = int(input('西暦を入力してください: '))
print(u'{0}{1}'.format(a[y%len(a)], b[y%len(b)]))
終了行:
[[練習問題]]
# -*- coding: utf-8 -*-
a = u'庚辛壬癸甲乙丙丁戊己'
b = u'申酉戌亥子丑寅卯辰巳午未'
y = int(input('西暦を入力してください: '))
print(u'{0}{1}'.format(a[y%len(a)], b[y%len(b)]))
ページ名: