我正在使用Python 3.5.2。
我是Python的初学者,我正试图从输入中获取路径。
然而,我收到此错误,我不明白。
Traceback (most recent call last):
File "./install.py", line 12, in <module>
path = input("Path: ")
File "<string>", line 1
/home/nicolas/test.txt
^
SyntaxError: invalid syntax
来源:
#! /usr/bin/python
# -*- coding: utf8 -*-
import os
import sys
import time
print('---- Test ----- \n')
time.sleep(1)
path = input("Path: ")
print(path)
非常感谢您的帮助!