摘要:
源地址Python基础练习题100例(Python 3.x) - 佛祖让我来巡山 - 博客园 (cnblogs.com) 1、有四个数字:1、2、3、4,能组成多少个互不相同且无重复数字的三位数?各是多少? 1 a=0 2 for i in range(1,5): 3 for j in range( 阅读全文
摘要:
1 from selenium import webdriver 2 from selenium.webdriver.common.by import By 3 from time import sleep 4 from selenium.webdriver import Chrome 5 from 阅读全文