私は与えられた範囲内の素数を計算するPythonツールをコード化しました。それで、シェルから数値をコピーし、txtファイルを作成し、それらを毎回貼り付けるのは面倒で、テキストファイルに素数を挿入するツールがあれば非常に便利です。素数をテキストファイルに印刷するPythonを取得するにはどうすればよいですか?
が、私はこれを試してみました:
def calc():
while True:
x = int(input("Please specify the lower end of the range...."))
y = int(input("Please specify the upper end of the range...."))
for n in range (x,y):
if all(n%i!=0 for i in range (2,n)):
a=[]
a.append(n)
fo = open('primes.txt', 'w')
print (">>>Writing the values to primes.txt...")
print ("##########Calculated by my prime calculator##########", file = fo)
print ("", file = fo)
print ((a), file = fo)
fo.close
s = input('To do another calculation input yes, to quit input anything else...')
if s == 'yes':
continue
else:
break
calc()
編集:私はしかし、問題
を解決FOとして
は( "primes.txt"、 "A")のオープンを使用して、私は「couldn n個の値をメモリに保存し、それらを増加するリストに追加するPythonを取得します。
あなたは素晴らしいです。 Pythonが愚かであるというその部分は、ユーモラスなスタートロールの試みでした。
それを行うにして使用する必要があるすべてでこれを行うべきではありませんしたいですちなみに、 'fo.close'は何もしません。メソッドを呼び出すには 'fo.close()'が必要ですが、実際には 'with open(...)as fo'を使って自動的に閉じなければなりません。 –