摘要: import os def get_current_user(): # whoami命令返回的信息中,第一个"/"之后的内容就是用户名 # 我们使用split("/")方法获取用户名 whoami_output = os.popen("whoami").read() return whoami_ou 阅读全文
posted @ 2024-09-02 15:13 darling331 阅读(10) 评论(0) 推荐(0) 编辑
摘要: import datetime import sys import time def func(mail): print('参数:{0}'.format(mail)) print('时间:{0}'.format(datetime.datetime.now())) print('-' * 30) de 阅读全文
posted @ 2024-09-02 14:59 darling331 阅读(15) 评论(0) 推荐(0) 编辑