我正在用python创建一个脚本,我应该在命令中键入:
python qwer.py -q hello -w thingies -e /root/text.txt -r 6
-q和-w是字符串,-e是目录,-r是数字。 我想为此制作一个GUI,但在此脚本中。 那么有没有办法在tkinter中这样做,并且像这样的格式? :
from Tkinter import *
def GUI:
#The GUI Script for Tkinter.
#get the string value for -q and -w.
#get the directory path for -e.
#get the number for -r.
def main:
#get the values from the def GUI
#script (do things)
并将这两者合并为一个脚本。 我希望输入是一个条(?)来键入值。 我该怎么做?