import sys
import os
print ("Welcome to the Calculator")
def main():
a = input ("Please enter the first operand: ")
op = input ("Please enter the operation you wish to perform, +, -, *, / : ")
b = input ("Please enter the second operand: ")
a = int(a)
b = int(b)
if op == "+":
ans = (a + b)
print (ans)
elif op == "-":
ans = (a - b)
print (ans)
if op == "*":
ans = (a * b)
print (ans)
elif op == "/":
ans = (a / b)
print (ans)
again = input("Would you like to perform another calculation? Y or N?")
if again == "Y":
main()
main()
こんにちは、たくさんの質問をしてすみません。
基本的に、コードを上に置き、.py ファイルをダブルクリックしてコードを実行すると、次のメッセージが表示された後、CMD から起動します。 / :"
CMD はランダムに閉じます。私のすべてのPythonプログラムにも起こりました。理由はありますか?それは私のひどいコードと関係がありますか?
すべての返信は大歓迎です:)