そのため、学習プロジェクトとして個人用の Reddit ボットを作成しようとしていますが、入力にエラー例外を追加するのに問題があります。
ソースコード全体は次のとおりです: http://pastebin.com/DYiun1ux
ここで問題になっている部分は
while True:
if type(thing_limit) == int:
print("That is a number, thanks.")
break
elif type(thing_limit) == float:
print("You need a whole number.")
sys.exit()
elif type(thing_limit) == str:
print("You need a whole number.")
sys.exit()
else:
print("That is a number, thanks.")
break
入力したユーザー名が有効かどうかを確認する方法がわかりません。ありがとう!