4. 更多控制流工具
除了刚介绍的 while 语句,Python 还用了一些别的。我们将在本章中遇到它们。
4.1. if 语句
if elif else
if x<0: x 0 print(Negative changed to zero) elif x0: print( zero) else: print(More)
4.2. for 语句
Pyth…
文章目录 概Dubbo总体架构应用特性Spring Cloud总体架构应用特性Dubbo vs Spring Cloud功能对比调用方式服务发现开发成本概
提到微服务开源框架,不可不说的是 Dubbo 和 Spring Cloud,这两大框架应该是大家最熟悉的微服务解决方案 . Dubbo
Dubbo 是阿里开源的一个分布式服务…
selenium处理12306登录
使用edge浏览器驱动
from selenium.webdriver import Edge
from selenium.webdriver.common.action_chains import ActionChains # 事件链
from selenium.webdriver.edge.options import Options
from selenium.webdriver.common.by import By
import…
实战:12306抢票
注意:代码运行之后,需要手动使用12306APP扫码登录
代码如下:
import csv
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.support.ui import…