导语:
本文主要介绍了关于如何用python调用另一个python脚本?的相关知识,包括shell脚本和python脚本,以及c语言调用python这些编程知识,希望对大家有参考作用。
如果我想把已经设置好的内容转移到其他地方怎么办?编辑器可以编写的方法包括复制、复制和传输。在我们日常工作中很容易理解,就是,
ctr+v,但是如果我们在编程中想在其他项目中使用某个位置,该怎么办呢?想必聪明的小伙伴们已经想到了,去调用吧,那就让我们看看本期的标题怎么调用吧!
用
python调用python脚本
#!/usr/local/bin/python3.7
import time
import os
count = 0
str = ('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')
另外一个
python脚本b.py如下:
#!/usr/local/bin/python3.7
print('hello world')
运行结果:
[python@master2 while]$ python a.py
hello world
this count is: 1
this count is: 2
this count is: 3
this count is: 4
this count is: 5
this count is: 6
this count is: 7
this count is: 8
Good Bye
直接给大家看代码演示是不是很简单?大多数情况下,可以直接使用上面编辑器提供的模块流程,但是还是需要区分不同的情况。
~好啦,大家先消化下吧,如果还想了解更多学习教程,点击python学习网即可哦~
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何用 Python 表达力量11/04
- ♥ 如何停止python脚本11/10
- ♥ python用什么编辑器好08/30
- ♥ python 使用 3rd 方模块进行连接10/13
- ♥ python如何保留指定的小数位数?09/05
- ♥ python sorted 排序键和值11/23
内容反馈