摘要:
添加系统全局变量:步骤1:使用root用户登录,在家目录下修改.bash_profile文件,查看结果如下:[root@server132 ~]# more .bash_profile # .bash_profile# Get the aliases and functionsif [ -f ~/.... 阅读全文
摘要:
import threadingdef test(a,b): print a, bp = threading.Thread(target=test, args=(1,2,))p.start() 阅读全文