因此,在pycharm(和python 3.7.4)中,不支持ssl。而且不断引起错误
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\admin\AppData\Local\Temp\pip-install-reqv02n_\ssl\setup.py", line 33
print 'looking for', f
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print('looking for', f)?
因此,我使用链接“ https://github.com/python/cpython/blob/3.7/Lib/ssl.py”来获取文件,并将此python文件包含在要导入ssl的同一文件夹中。这行得通吗?否则,我如何在python3中使用ssl? (第s。我使用的是windwos 10)
答案 0 :(得分:2)
在python 3中,如果没有括号,则无法创建s
语句。在python 2中,您可以执行类似print
的操作,但是在python 3中,您必须使用括号print "hello"
如果要使用python 2,请在项目解释器中将虚拟环境更改为Python 2。
答案 1 :(得分:1)
这是缺少括号的错误。您必须在python 3中使用print(“ looking”,f)