python3 print格式化输出---------"%s 和 % d"

  1. 打印字符串

    >>> string="hello"
    >>> print("string=%s"%(string))
    输出: string=hello
    

2.打印整数

>>> print ("He is %d years old"%(25))
输出: He is 25 years old

3.打印浮点数

>>>print ("His height is %f m"%(1.83)) 输出 …
点击查看更多…

Centos date 设置自定义时间

(1)安装ntpdate工具

# yum -y install ntp ntpdate

(2)设置系统时间与网络时间同步

# ntpdate cn.pool.ntp.org

(3)将系统时间写入硬件时间

# hwclock --systohc

(4)强制系统时间写 …

点击查看更多…

Squid 状态查看

squidclient -p 80 mgr:info      #取得squid运行状态信息:
squidclient -p 80 mgr:mem     #取得squid内存使用情况:
squidclient -p 80 mgr:objects #取得squid已经缓存的列表,使用时要小心,可能会造成squid崩溃:
squidclient -p 80 mgr:diskd  #取得squid的磁盘使用情况:
squidclient -p 80 -m PURGE http …
点击查看更多…

Windows 下 python 打包成exe

pyinstaller.exe -F 文件路径/要打包的文件.py

点击查看更多…

查看 Windows 电脑已经连接过wifi 信息

开始运行, cmd

点击查看更多…