我正在尝试创建一个终端python程序。我想为用户添加一个教程,当他们第一次启动该程序,然后再也没有打开它时。有什么方法可以执行此操作,还是必须为此创建一个单独的脚本?
答案 0 :(得分:0)
有很多方法可以做到这一点。您可以在首次启动该程序时简单地创建一个文件。
first_time=False
fn='config.txt'
try:
file = open(fn, 'r')
except IOError:
file = open(fn, 'w')
first_time=True
if(first_time):
print("This is the first time")
#you tutorial code can go here