我開始與谷歌應用程序引擎,並試圖一些快速learning.I過這個問題,它不會對我的地方發展environment.Here發生是偶然的代碼谷歌AppEngine上不打印數組值
import random, math
random.seed()
quotesArray=[]
quotesArray.append("This is a Test1")
quotesArray.append("This is a Test2")
quotesArray.append("This is a Test3")
quotesArray.append("This is a Test4")
quotesArray.append("This is a Test5")
x = int(math.floor(random.random()*343)+1)
print quotesArray[0]+" "+str(x)
在我的開發環境的輸出
This is a Test1 45
在現場直播的輸出是
45
任何人都可以請提供一些想法,爲什麼會這樣?
當您使用logging.debug()而不是打印時,這也會發生嗎? – 2011-03-08 22:16:06