一.python关键字 1. and :表示逻辑判断 [与] a = '1' b = 1 if a and b: print('Hello Python') 2.as :单独没有实际意思,常与with组合使用,with...as 例如: with open('./test.txt', 'w') as f: f.write('人生苦短, 我用python') 3.assert : 表示断言, assert语句用来声明某个条件是真的.例如,如果你非常确信某个条件为真,而你想要检验这一点,并且在它
import requests from bs4 import BeautifulSoup import random import openpyxl xls=openpyxl.Workbook() sheet=xls.active sheet.title='movies' sheet['A1']='序号' sheet['B1']='名称' sheet['C1']='评分' sheet['D1']='推荐语' sheet['E1']='链接' for i in range(11): params