python-format()

以前的输出

    print("我叫s%”%('小明'))

python3 后通过{} 和:来代替以前的%

print ("我叫{}".format('小明'))


页面交互遇错,编译问题


#获取当前页面代码 page_source

print('当前页面代码{}'.format(web.page_source))

解决方法

reload(sys)

sys.setdefaultencoding( "utf-8" )


你可能感兴趣的:(python-format())