Python+selenium之读取配置文件内容 Python支持很多配置文件的读写,此例子中介绍一种配置文件的读取数据,叫ini文件,python中有一个类ConfigParser支持读ini文件. 将ini文件命名为config.ini,代码如下所示 #this is config file,only store browser type and server URL [browserType] #browserName=Firefox browserName=Chrome #browser
print('我考了%d分'%20) msg=''' ---------info of %s----------- name: %s age: %d #字符串不能放到%d处 job: %s salary: %f you will be retired in %s years #数字可以放到%s处 ---------end--------------- ) print(msg)