当前位置:首页 » 编程语言 » 写一个脚本python

写一个脚本python

发布时间: 2022-11-25 20:10:07

python3写个脚本

不难,最简单的测试脚本。
用到open file,for,webdriver.Chrome.

❷ 怎样写python脚本

index=True
while index:
score=input("请输入学生成绩(1-100,输入q退出程序):")
try:
if str(score)=="q":
index=False
else:
if int(score)>90 and int(score)<=100:
print "A"
elif int(score)>80 and int(score)<=90:
print "B"
elif int(score)>70 and int(score)<=80:
print "C"
elif int(score)>=60 and int(score)<=70:
print "D"
elif int(score)<60 :
print "E"
else:
print "请输入正确的成绩!"
except:
print "请输入正确的标识符!"

❸ 怎样开始写第一个基于python的selenium脚本

1、下载并安装python

2、安装selenium下载并解压缩selenium-2.32.0.tar.gz. 把selenium-2.32.0\py\下的selenium整个文件夹放入Python33\Lib\site-packages目录下。

3 下载Eclipse后安装pydev插件

4 打开eclipse创建pydev project,并添加一个Pydev Mole 输入一下代码
# coding=gbk
from selenium import webdriver
from selenium.webdriver.common import by

if __name__ == '__main__':
firefoxDriver=webdriver.Firefox()
firefoxDriver.get("http://www..com")
ele=firefoxDriver.find_element(by.By.ID,"kw")
ele.send_keys("hello")

5要想支持IE,下载IEDriverServer,解压缩之后,将exe程序放在安装python的根目录下。

6、运行过程中如果出现WebDriverException: Message: u'Unexpected error launching
Internet Explorer. Protected Mode settings are not the same for all
zones. Enable Protected Mode must be set to the same value (enabled or
disabled) for all zones.'
这个错误,更改IE的internet选项->安全,将Internet/本地Internet/受信任的站定/受限制的站点中的启用保护模式全部
去掉勾,或者全部勾上。下面是一个IE的例子,打开网络,自动搜索selenium。
from selenium import webdriver
from selenium.webdriver.common.keys import Keys

driver = webdriver.Ie()
driver.get("xxx")
elem = driver.find_element_by_name("wd")
elem.send_keys("selenium")
elem.send_keys(Keys.RETURN)

完成上述步骤,你已经写了第一个基于python的selenium 脚本了

❹ 编写python 脚本

import math


l, t = map(int, input("Please enter length and time:").split())


while not (0<=t<=60):

t = int(input("Please enter a time between 0 and 60:"))


while l <= 0:

l = int(input("Please enter a valid length which is more than zero:"))


x = l * math.sin(2*math.pi*t / 60)

y = l * math.cos(2*math.pi*t/60)


print(x,y)

❺ 用python写一个重启路由器的脚本,怎么做

执行python脚本只需要对python文件做如下操作即可:
在python文件里第一行加上#! /usr/bin/python,即你的python解释器所在的目录。另外还有一种写法是#! /usr/bin/env python
编辑完成python脚本文件后为它加上可执行权限。
例如你的python脚本文件叫做runit.py,那么就在shell中输入如下命令:chmod +x runit.py
之后直接在shell中输入./runit.py就可以执行你的python程序了。
当然这是在Linux下的操作,如果想在windows下直接执行Python程序,就需要使用py2exe工具将python源程序编译成exe文件了。

❻ 写一个python脚本

index=True
whileindex:
score=input("请输入学生成绩(1-100,输入q退出程序):")
try:
ifstr(score)=="q":
index=False
else:
ifint(score)>90andint(score)<=100:
print"A"
elifint(score)>80andint(score)<=90:
print"B"
elifint(score)>70andint(score)<=80:
print"C"
elifint(score)>=60andint(score)<=70:
print"D"
elifint(score)<60:
print"E"
else:
print"请输入正确的成绩!"
except:
print"请输入正确的标识符!"

❼ 如何用python写脚本

以Python2.7操作为例:
1、首先需要打开电脑桌面,按开始的快捷键,点击Python2.7如图所示的选项进入。
相关推荐:《Python入门教程》
2、打开之后,开始编辑脚本,脚本第一行一定要写上 #!usr/bin/python表示该脚本文件是可执行python脚本,如果python目录不在usr/bin目录下,则替换成当前python执行程序的目录。
3、脚本写完之后,打开CMD命令行,开始调试、可以直接用editplus调试。
4、最后,CMD命令行中,输入 “python” + “空格”,即 ”python “,然后敲回车运行即可,这样就可以把编辑好的脚本运行了。

❽ Python 如何写脚本

以Python2.7操作为例:
1、首先需要打开电脑桌面,按开始的快捷键,点击Python2.7如图所示的选项进入。
2、打开之后,开始编辑脚本,脚本第一行一定要写上
#!usr/bin/python表示该脚本文件是可执行python脚本,如果python目录不在usr/bin目录下,则替换成当前python执行程序的目录。
3、脚本写完之后,打开CMD命令行,开始调试、可以直接用editplus调试。
4、最后,CMD命令行中,输入
“python”
+
“空格”,即
”python
“,然后敲回车运行即可,这样就可以把编辑好的脚本运行了。

❾ 如何在windows上编写python脚本

Python安装好以后,在开始菜单会看到一个idle工具(一个增强的交互命令行解释器窗口)以及一个自带的编辑器。
在任意目录新建一个.py文件或者保存的时候以.py结尾,用记事本、Python自带的编辑器或者其他编辑器如Sublime
Text或者NotePad++都行。
如果你使用的是idle,直接按F5就能在Python自带的命令行查看结果
如果是用记事本或者其他编辑器,快捷键win+R调出运行目录,输入cmd,然后在命令行里进入这个目录,输入python
[filename].py或者[filename].py就可以看到运行结果了

热点内容
医院yy密码是多少 发布:2025-01-30 08:03:35 浏览:978
平板电脑怎么升级到安卓 发布:2025-01-30 08:03:24 浏览:957
新建的医院需要什么配置 发布:2025-01-30 07:58:32 浏览:813
车蜗杆编程 发布:2025-01-30 07:53:03 浏览:30
攒攒软件脚本 发布:2025-01-30 07:21:00 浏览:494
一台物理机搭建多台云服务器 发布:2025-01-30 07:19:44 浏览:382
战地五如何保存服务器 发布:2025-01-30 07:17:55 浏览:331
安卓instagram在相机哪里 发布:2025-01-30 07:17:47 浏览:770
ftp没网是什么意思 发布:2025-01-30 07:16:13 浏览:887
网络已连接就是看不到密码是多少 发布:2025-01-30 07:14:33 浏览:958