这段代码在我的电脑或浏览器上使用的任何编辑器中都显示错误,任何人都可以告诉我问题在哪里可以,原子给我这个错误:
'模块'对象没有属性' maketrans'
import urllib
def reader():
data= "I will take a shot at it"
checker(data)
def checker(txt):
recieved= urllib.urlopen("http://www.wdylike.appspot.com/?q="+ txt)
data= recieved.read()
if (data== "true"): print "this text is cursed"
elif (data== "false"): print "this text is fine"
reader()
raw_input()