试图让它工作,但继续得到“ValueError:无法将字符串转换为浮点数:”错误。我试过 read() 和 readline() 但无法弄清楚。
谢谢您的帮助!
from urllib2 import urlopen
current_time = urlopen("http://just-the-time.appspot.com/?f=%t")
print current_time.readline()
future = float(current_time.readline()) + 30
print "future" + future