摘要:
import random checkcode='' for i in range(4): current=random.randrange(0,4) if current==i: tmp=chr(random.randint(65,90)) else: tmp=random.randint(0,9) checkcode+=str(... 阅读全文
摘要:
自己写的 import sys goods=[[1,"milk",5],[2,"bike",800],[3,"iphone",5800]] bought=[] salary=int(input("input your salary:")) for i in goods: print(i) while 1: id=input("input the id of goods whic... 阅读全文
摘要:
import sys input_name=input("input your name:") f1=open("F:/测试资料/pythonlearn/day1/luckname.txt","r") lines = f1.readlines() for line in lines: user= line.strip('\n') if input_name==user: ... 阅读全文
摘要:
1.按照网上查的方法,将mysql-connector-java-5.1.42-bin.jar包copy在apache-jmeter-2.12\lib\ext下,执行测试计划,查看结果树,报 No suitable driver found for jdbc:mysql 2.检查发现很久之前装的jd 阅读全文