私はいくつかの調査を行い、さまざまな例を見つけましたが、私のpythonの知識は非常に基本的なものであるため、それらを理解していません.
リストのみを別の python ウィンドウにインポートする方法はありますか? 他のpythonページにリストをインポートして、それらを表示するか、さらに変更するだけですか? このためのコードはありませんが、次のようなものになると思います
from 'filename' import task[],date[],description[]
これがオンになっているコードは次のとおりです(リストしたいだけです。他の機能を実行したくないことに注意してください)
import sys
import os
task=[]
date=[]
description=[]
def addtask():
"""adds a task to the task list"""
print("Please re-enter your filename with .txt on the end.")
f=(raw_input("filename: "))
file= open(f, "w+")
add=(raw_input("Enter a task: "))
if add=="helpme":
os.startfile("C:\Users\Dale\Desktop\Python coursework\helpme.txt")
add=(addtask())
else:
file.write(add)
task.append(add)
add1=(raw_input("Please enter a date for this task: "))
if add1=="helpme":
os.startfile("C:\Users\Dale\Desktop\Python coursework\helpme.txt")
add=(addtask())
else:
file.write(add1)
date.append(add1)
add2=(raw_input("Please enter a description of the task: "))
if add2=="helpme":
os.startfile("C:\Users\Dale\Desktop\Python coursework\helpme.txt")
add=(addtask())
else:
file.write(add2)
description.append(add2)
a=(raw_input("would you like to add another?: "))
if a=="yes":
print(addtask())
elif a=="helpme":
os.startfile("C:\Users\Dale\Desktop\Python coursework\helpme.txt")
add=(addtask())
else:
import choices
b=(raw_input("Would you like to add a task?"))
if b=="yes":
add=addtask()
elif b=="no":
import choices
elif b=="helpme":
os.startfile("C:\Users\Dale\Desktop\Python coursework\helpme.txt")
add=(addtask())
else:
import choices
うまくいけば、それは正しく出てきます... 注* 3 つのリストは と呼ばれtask[]
、date[]
description[]