寫一個腳本python
不難,最簡單的測試腳本。
用到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就可以看到運行結果了