意外的行继续符

unexpected line continuation character

我正在学习如何进行数据科学,并且正在关注 kaggle tutorial for titanic

然而,

women_only_stats = data[                          \ #Which element           
                     (data[0::,4] == "female")    \ #is a female
                   &(data[0::,2].astype(np.float) \ #and was ith class
                         == i+1) \                       
                   &(data[0:,9].astype(np.float)  \#was greater 
                        >= j*fare_bracket_size)   \#than this bin              
                   &(data[0:,9].astype(np.float)  \#and less than
                        < (j+1)*fare_bracket_size)\#the next bin    
                      , 1]                        #in the 2nd col                           

我在 (data[0::,4] == "female")

的第一行遇到了这个错误

错误:

语法错误:行继续符后出现意外字符

您的代码(以及您从中复制的网站上的代码)有反斜杠后跟注释。例如

\ #is a female

反斜杠是 "line continuation character"。该错误告诉您您不应该在行继续字符后跟更多文本(在本例中为注释)。

去掉反斜杠。