如何在.py脚本中使用python书签功能?

时间:2018-05-26 06:48:26

标签: python function

我正在使用python V 2.7并尝试使用书签功能为目录指定别名,但不确定如何在.py脚本中调用该函数。

以下是当前代码:

#!/usr/bin/env python
import os
import subprocess

########################################
#The script showcases functions
########################################

def bookmark_func():
    response = raw_input("Please enter the directory name:")
    print("The input directory is",response)
    os.chdir(response)
    cwd = os.getcwd()
    print("Current working directory is:",cwd)
    response2 = raw_input("Please enter a bookmark variable")
    subprocess.call([bookmark, response2])
bookmark_func()

我尝试过几种方法但是我不确定如何在.py脚本中加入python内置函数。

1 个答案:

答案 0 :(得分:0)

要在运行文件时运行它(我想这就是您要查找的内容),请更改以下内容 bookmark_func()

if __name__ == "__main__" :
         bookmark_func()

这会检查呼叫点并使其运行。