Answers:
您无需使用“开放”一词。 帮助说:
idle.py [-c command] [-d] [-e] [-s] [-t title] [arg] ...
-c command run this command
-d enable debugger
-e edit mode; arguments are files to be edited
-s run $IDLESTARTUP or $PYTHONSTARTUP first
-t title set title of shell window
您可以这样做:
idle file_you_want_to_open.py
or
idle.py file_you_want_to_open.py
如果该文件不存在,则将创建它。
您也可以输入以下命令直接打开空闲状态:
idle
在终端中,然后单击
File >> New File or Open File
选项选择或打开文件,编写程序并执行。但是我建议您使用“ 终端 ”和“ 文本编辑器 ”,例如
Sublime Text
而不是使用“ 闲置 ”。
PS:您可能已经知道这些文本编辑器,但是我提到它是为了防止其他人对本文有新的看法,并且也许派上用场。
做这个:
$ cd ~/Desktop
$ idle your_file.py