我寫了一個家庭作業以下,並在空閒正常工作和Eclipse運行的Python 3的Python腳本不能運行通過TextMate的,在IDLE OK和Eclipse
不過,我試圖從TextMate的運行新的第1行 - 我在這裏找到 - 在Mac上將它指向Python 3。它似乎在運行Python 3,但返回一個錯誤。它說:EOFError:讀取一行時的EOF。它指的是下面的第5行。
任何人都知道爲什麼?
順便說一句,這個TextMate問題不是家庭作業的一部分,所以我沒有試圖獲得作業幫助。我只是想弄清楚如何使用TextMate的使用Python 3
#! /usr/local/bin/python3
#
# Tests user string against two conditions.
#
user_string = input("Enter a string that is all upper case and ends with a period: ")
if user_string.isupper() and user_string.endswith("."):
print("Your string met both conditions.")
else:
if user_string.isupper():
print("Your string does not end with a period.")
elif user_string.endswith("."):
print("Your string is not all upper.")
else:
print("Your string failed both conditions.")
尋求功課幫助沒有任何問題。只要你不要求我們做你的功課。 – Falmarri 2010-12-23 06:52:44
謝謝。我很感激。 – Farrell 2010-12-23 14:17:23