摘要:
CNPM Binaries Mirror (npmmirror.com) UI自动化相关包下载连接 Central Repository: io/qameta/allure/allure-commandline/2.25.0 (apache.org) allure各版本下载 Links for ce 阅读全文
摘要:
def multiplication_table(): content='' for i in range(1,10): row='<tr>' for j in range(1,i+1): row+=f'<td width="100">{j}*{i}={i*j}</td>' row+='</tr>' 阅读全文
摘要:
#统计字符个数方法 def count_char(char,string): count=0 for c in string: if c==char: count+=1 return count char='l' string='hello world' count =count_char(char 阅读全文