pycharm
運行這個出現(xiàn)這個
?File "E:/py/test.py", line 2
? ? print bs4
? ? ? ? ? ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(bs4)?
Process finished with exit code 1
運行這個出現(xiàn)這個
?File "E:/py/test.py", line 2
? ? print bs4
? ? ? ? ? ^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(bs4)?
Process finished with exit code 1
2019-11-07
舉報
2019-12-01
你把“Missing parentheses in call to 'print'. Did you mean print(bs4)?”這一段翻譯一下就知道怎么回事了。
應該是print(bs4)
2019-11-15
python3的語法print函數(shù)要加括號,所以應該是? print(bs4)