1.定义读取数据:
configFile py文件:
class Config:
#从read.csv文件中读取个人客户号 def GETKHH_GR(self): file=open('D:\Pythonproject\read.csv',encoding='UTF-8') khhReader=csv.reader(file) # print(list(khhReader)) return ''.join(random.choice(list(khhReader))) # 随机取一个客户号(使用内置的 join() 函数将列表转换为字符串) file.close()
2.调用读取方法获得内容并使用
import configFile khh=configFile.Config().GETKHH_GR() kh.khh_login(khh)#从本地csv文件读出取来随机取客户