前提・実現したいこと
現在、『いちばんやさしいPythonの教本』という書籍で開発をしている初心者です。
以下の問題を解決したい。
発生している問題・エラーメッセージ
Unused variable 'cmd' pylint(unused-variable)
Unused variable 'heisei' pylint(unused-variable)
と出ており解決出来ない。
エラーメッセージ
該当のソースコード
from pybot_eto import eto_command
def len_command(command):
cmd, text = command.split()
length = len(text)
response = '文字列ノ長サハ {} 文字デス'.format(length)
return response
def heisei_command(command):
heisei, year_str = command.split()
year = int(year_str)
if year >= 1989:
heisei_year = year - 1988
response = '西暦{}年ハ、平成{}年デス'.format(year, heisei_year)
else:
response = '西暦{}年ハ、平成デハアリマセン'.format(year)
return response
command_file = open('pybot.txt', encoding='utf-8')
raw_date = command_file.read()
command_file.close()
lines = raw_date.splitlines()
bot_dict = {}
for line in lines:
word_list = line.split(',')
key = word_list[0]
response = word_list[1]
bot_dict[key] = response
while True:
command = input('pybot> ')
response = ''
for key in bot_dict:
if key in command:
response = bot_dict[key]
break
if '平成' in command: response = heisei_command(command) if '長さ' in command: response = len_command(command) if '干支' in command: response = eto_command(command) if not response: response = '何ヲ言ッテルカ、ワカラナイ' print(response) if 'さようなら' in command: break
補足情報(FW/ツールのバージョンなど)
VScode Mac を使用しています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/18 05:40
2020/04/18 05:55
2020/04/18 06:42