小陆同学

python 中文名:蟒蛇,设计者:Guido van Rossum

导航

2020年2月17日 #

python--脚本传参与shell脚本传参(位置参数)

摘要: 写一个最简单的shell脚本,了解shell脚本是如何传参 1、 vim test1.sh name=$1 age=$2 echo ${name} echo ${age} View Code 2.调用脚本并传参 sh test1.sh zhangsan 14 11、 vim test1.py tes 阅读全文

posted @ 2020-02-17 17:24 小陆同学 阅读(1241) 评论(0) 推荐(0) 编辑

python--一起来盖个时间戳!!

摘要: 1、datetime import datetime print(datetime.datetime.now()) 2、time import time otherStyleTime = time.strftime("%Y/%m/%d %H:%M:%S", time.localtime()) pri 阅读全文

posted @ 2020-02-17 10:56 小陆同学 阅读(222) 评论(0) 推荐(0) 编辑