2014-12-23 83 views
-1

因此,在新的python和我正在學習A級計算和我們的語言來傾斜是python。 我真的很落後,我什麼都不知道。儘管已經是2個學期,並且只剩4個月到考試期。 所以我一直在看視頻教程,由於某種原因,我不能使用「其他」 ![這裏是教程做了什麼,我已經複製了所有內容] [1]即時通訊新的python,我似乎無法使用「其他」

這是什麼教程這樣做:

sister_age = 15 

brother_age = 12 

if sister_age > brother_age: 


print" "sister is older" 

else: 

    print "brother is older" 

此失配的,這是「妹妹是老年人

但是我抄出來:

sister_age=15 

brother_age=12 

if sister_age>brother_age: 

print("sister is older") 

    else: 

然後出現以下錯誤消息:

"SyntaxError: unindent does not match any outer indentation level"

對不起,但我只是不明白。 非常感謝您的時間閱讀本文。

+0

嘗試縮進你的代碼 –

+0

只是爲了把事情說清楚:在Python中,縮進不是化妝品,它的語法的一部分,用於表示一個代碼塊的條件語句開頭和結尾(的if/else) ,循環,嘗試/除外,函數和類定義等。 –

回答

1

縮進是關鍵。

sister_age = 15 
brother_age = 12 
if sister_age > brother_age: 
    print "sister is older" 
else: 
    print "brother is older"