python
m0_56285948
这个作者很懒,什么都没留下…
展开
-
ERROR:device_event_log_impl.ccBluetooth:bluetooth_adapter_winrt.ccGetting Default Adapter failed.
ERROR:device_event_log_impl.ccBluetooth:bluetooth_adapter_winrt.ccGetting Default Adapter failed.解决办法options = webdriver.ChromeOptions()options.add_experimental_option("excludeSwitches",["enable-logging"])driver = webdriver.Chrome(options=options)...原创 2021-04-08 14:17:47 · 12801 阅读 · 6 评论 -
04-06 python基础学习
Python学习分支语句if学习,需要注意if语句使用格式,if 条件:执行语句缩进。''' = 3x - 5 (x>1)f(x) = x + 2 (-1<= x <=1) = 5x + 3(x<-1) 需求:输入x值,打印f(x)值'''x = eval(input("请输入x值"))#需要注意的input输入的结果为str类型需转换后才能够使用if x > 1: print("f(x) = ",(3 * x -5))eli原创 2021-04-06 20:18:09 · 119 阅读 · 0 评论