意外的续行字符

时间:2015-09-20 09:29:20

标签: python kaggle

我正在学习如何进行数据科学并遵循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")

的第一行收到此错误

错误:

SyntaxError:行继续符后的意外字符

1 个答案:

答案 0 :(得分:1)

您的代码(以及您复制的网站上的代码)有反斜杠,后跟注释。 E.g。

\ #is a female

反斜杠是&#34;行继续符号&#34;。错误告诉您不应该有一个行继续符,后跟更多文本(在这种情况下是注释)。

取出反斜杠。