在这段代码中,Python 2和Python 3之间有什么区别吗?
if __name__ == '__main__':
argparser.add_argument("--file", required=True, help="Video file to upload")
argparser.add_argument("--title", help="Video title", default="Test Title")
argparser.add_argument("--description", help="Video description",
default="Test Description")
argparser.add_argument("--category", default="22",
help="Numeric video category. " +
"See https://developers.google.com/youtube/v3/docs/videoCategories/list")
argparser.add_argument("--keywords", help="Video keywords, comma separated",
default="")
argparser.add_argument("--privacyStatus", choices=VALID_PRIVACY_STATUSES,
default=VALID_PRIVACY_STATUSES[0], help="Video privacy status.")
args = argparser.parse_args()
当运行程序时,我得到:
error: the following arguments are required: --file
Py2和Py3在这个脚本中的行为相同。根据版本的不同,错误消息的内容可能略有不同。
实际上,错误信息会回显此设置:
"--file", required=True
error: the following arguments are required: --file
你怎么称呼这个脚本?