久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術(shù)文章
文章詳情頁

簡單了解python調(diào)用其他腳本方法實(shí)例

瀏覽:2日期:2022-08-01 09:40:59

1.用python調(diào)用python腳本

#!/usr/local/bin/python3.7import timeimport os count = 0str = (’python b.py’)result1 = os.system(str)print(result1)while True: count = count + 1 if count == 8: print(’this count is:’,count) break else: time.sleep(1) print(’this count is:’,count) print(’Good Bye’)

另外一個(gè)python腳本b.py如下:

#!/usr/local/bin/python3.7print(’hello world’)

運(yùn)行結(jié)果:

[python@master2 while]$ python a.py hello worldthis count is: 1this count is: 2this count is: 3this count is: 4this count is: 5this count is: 6this count is: 7this count is: 8Good Bye

2.python調(diào)用shell方法os.system()

#!/usr/local/bin/python3.7import timeimport os count = 0n = os.system(’sh b.sh’)while True: count = count + 1 if count == 8: print(’this count is:’,count) break else: time.sleep(1) print(’this count is:’,count) print(’Good Bye’)

shell腳本如下:

#!/bin/shecho 'hello world'

運(yùn)行結(jié)果:

[python@master2 while]$ python a.py hello worldthis count is: 1this count is: 2this count is: 3this count is: 4this count is: 5this count is: 6this count is: 7this count is: 8Good Bye

3.python調(diào)用shell方法os.popen()

#!/usr/local/bin/python3.7import timeimport os count = 0n = os.system(’sh b.sh’)while True: count = count + 1 if count == 8: print(’this count is:’,count) break else: time.sleep(1) print(’this count is:’,count) print(’Good Bye’)

運(yùn)行結(jié)果:

[python@master2 while]$ python a.py <os._wrap_close object at 0x7f7f89377940>[’hello worldn’]this count is: 1this count is: 2this count is: 3this count is: 4this count is: 5this count is: 6this count is: 7this count is: 8Good Bye

os.system.popen() 這個(gè)方法會(huì)打開一個(gè)管道,返回結(jié)果是一個(gè)連接管道的文件對象,該文件對象的操作方法同open(),可以從該文件對象中讀取返回結(jié)果。如果執(zhí)行成功,不會(huì)返回狀態(tài)碼,如果執(zhí)行失敗,則會(huì)將錯(cuò)誤信息輸出到stdout,并返回一個(gè)空字符串。這里官方也表示subprocess模塊已經(jīng)實(shí)現(xiàn)了更為強(qiáng)大的subprocess.Popen()方法。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 东平县| 综艺| 湟中县| 南华县| 阿合奇县| 淳安县| 顺平县| 巴楚县| 盐源县| 松滋市| 大同县| 抚宁县| 勃利县| 理塘县| 乳山市| 宜宾县| 衡阳市| 无极县| 清新县| 汝城县| 万山特区| 浮山县| 辉南县| 大足县| 安龙县| 威远县| 万源市| 雅江县| 独山县| 竹溪县| 上犹县| 团风县| 丰都县| 清远市| 灯塔市| 温宿县| 乡城县| 甘南县| 德钦县| 襄汾县| 六盘水市|