在python2.7中使用urlopen时出错

时间:2018-06-17 18:46:14

标签: python-2.7

这段代码在我的电脑或浏览器上使用的任何编辑器中都显示错误,任何人都可以告诉我问题在哪里可以,原子给我这个错误:

  

'模块'对象没有属性' 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()

0 个答案:

没有答案