智一面的面试题提供python的测试题
使用地址:http://www.gtalent.cn/exam/interview?token=52cf92de494f4a8b6165d817a7279966
import subprocess
import urllib.request
def clear():
'''该函数用于清屏'''
print('内容较多,3秒后翻页')
time.sleep(3)
OS = platform.system()
if OS == 'Windows':
subprocess.call('cls',shell=True)
else:
subprocess.call('clear')
def linkBaidu():
url = 'http://www.baidu.com'
try:
resp**e = urllib.request.urlopen(url,timeout=3)
except urllib.request.URLError:
print('网页地址错误')
exit()
with open('baidu_1.txt','w') as fp:
fp.write(str(resp**e.read()))
print('已经将网页的信息存入当前目录的baidu_1.txt文件中,请自行查看。')
if __name__ == '__main__':
linkBaidu()
在上述这个程序中,clear()函数是如何起作用的,我试过,将它删掉,也可以正常读取Baidu网站的信息
python技术交流群:941108876
智一面的面试题提供python的测试题
使用地址:http://www.gtalent.cn/exam/interview?token=9d06e75d818c9506d4309684d9637395