私はPythonを初めて使用しています。Pythonプログラムが実行されますが、出力を見るために開いていません。
IDLEを使用して作成したプログラムがあります。これらのプログラムは実行されますが、出力は約1/4秒間画面に表示されてから消えます。
私はインターネットで検索しましたが、解決策が見つかりませんでした。なぜこれが起こり、どのようにそれに "対抗"するのか?
注:私は
はありがとうファイルをダブルクリックしています!コードの
例:
def loader():
percentage = float(input("what percentage do you want?"))
x = 0
print("\nGoal:{} %".format(percentage))
if percentage <= 100 and percentage > 0:
while x < percentage:
x+=1
print("Loading...{}%".format(x))
else:
print ("Error, you can't overload/underload")
loader()
OR
def trinomial():
a = float(input("a?"))
b = float(input("b?"))
c = float(input("c?"))
print("\n a = {}\n b = {} \n c = {}".format(a,b,c))
print("So you are trying to find x for \n {}x^2 + ({}x) + ({})".format(a,b,c))
delta = b**2 - (4 * a * c)
if delta > 0:
x1 = (-b - sqrt(delta))/(2*a)
x2 = (-b + sqrt(delta))/(2*a)
print("For x = {} or x = {}, the trinomial is solved".format(x1, x2))
elif delta < 0:
print ("No values of x possible")
elif delta == 0:
#I know, I could have used "else"
x1 = -b/(2*a)
print("For x = {} the trinomial is solved".format(x1))
trinomial()
:
また、あなたは、あなたのコードの末尾のようなものを、ユーザ入力の要求を追加することができますか? IDLEを通して?ターミナルを通して?または、スクリプトをダブルクリックしますか? –
@AdamSmithダブルクリック – FlipFloop
プログラムのコードを共有してください – Ivan