作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
脚本针对 accounts.txt 文件中存在的帐户数量运行。我想运行脚本 x 次,无论 accounts.txt 文件中存在多少个帐户。所以我只输入一个输入 10,脚本应该只运行 10 次 for 循环。下面是我的代码。
有人可以帮我解决如何修复 for 循环或为 for 循环添加新的父级吗?
file = open('accounts.txt','r')
for line in file:
credentials = line.split(";")
username = credentials[0]
password = credentials[1]
comment = credentials[2]
chromedriver = "/Users/Ali/Downloads/chromedriver"
os.environ["webdriver.chrome.driver"] = chromedriver
# driver = webdriver.Chrome(chromedriver)
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--mute-audio")
最佳答案
这应该有效:
for count, line in enumerate(file):
credentials = line.split(";")
username = credentials[0]
password = credentials[1]
comment = credentials[2]
chromedriver = "/Users/Ali/Downloads/chromedriver"
os.environ["webdriver.chrome.driver"] = chromedriver
# driver = webdriver.Chrome(chromedriver)
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--mute-audio")
if count == 9: # count starts at 0
break
关于python - For Loop in python x文件中的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45198814/
我是一名优秀的程序员,十分优秀!