码迷,mamicode.com
首页 > 编程语言 > 详细

python -c 执行单行命令/脚本,有点意思

时间:2020-01-13 15:57:53      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:多行   das   class   code   原创   span   import   dir   单行   

python -c参数,支持执行单行命令/脚本。
例:

> python -c "import os;print(‘hello‘),print(‘world‘)"
> python -c "import os;print(‘hello‘);print(‘world‘)"

注意:要用双引号将命令包起来,import要以**;结尾,命令用[]括起来,多行命令用多个[]**

> python -c "import os,time;[print(i) for i in os.listdir()];[print(time.time())]"
> python -c "import os,time;[print(i) for i in os.listdir()],[print(time.time())]"

复杂的命令必须要用**[]**括起来,否则会报错。

格式上还可以多尝试一下:

> python -c "print(‘hello‘);print(‘world‘)"
> python -c "print(‘hello‘),print(‘world‘)"
> python -c "[print(‘hello‘),print(‘world‘)]"
> python -c "[print(‘hello‘)],[print(‘world‘)]"

这几条的输出是一样的。
以上。
————————————————
版权声明:本文为CSDN博主「phoenix339」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/phoenix339/article/details/90405610

python -c 执行单行命令/脚本,有点意思

标签:多行   das   class   code   原创   span   import   dir   单行   

原文地址:https://www.cnblogs.com/sggggr/p/12187616.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!