51dev.com IT技术开发者社区

51dev.com 技术开发者社区

python datetime模块来获取当前的日期和时间

python datetime模块来获取当前的日期和时间

 #!/usr/bin/python#-*-coding:UTF-8-*-importdatetimei=datetime.datetime.now()print("当前的日期和时间是%s"%i)print("ISO格式的日期和时间是%s"%i.isoformat())print("当前的...

python 时间元组转时间戳

python 时间元组转时间戳

 #!/usr/bin/python#-*-coding:UTF-8-*-importtimeprint(time.mktime((2018,9,30,9,44,31,6,273,0)))输出1538271871.0 ...

python 获取当前时间戳

python 获取当前时间戳

 #!/usr/bin/python#-*-coding:UTF-8-*-importtime;#引入time模块ticks=time.time()print("当前时间戳为:",ticks)输出:当前时间戳为:1459994552.51 ...

python 时间戳转元组

python 时间戳转元组

 #!/usr/bin/python#-*-coding:UTF-8-*-importtimelocaltime=time.localtime(time.time())print("本地时间为:",localtime)输出:本地时间为:time.struct_time(tm_year=20...

Ubuntu 14.04 执行指定用户的命令

Ubuntu 14.04 执行指定用户的命令

 #!/bin/bashsudo-uusername/home/sco/start_server.sh 或者#!/bin/bashsu-username-c/etc/init.d/xxx.sh  ...

Ubuntu 14.04设置开机启动脚本的方法

Ubuntu 14.04设置开机启动脚本的方法

 rc.local脚本rc.local脚本是一个ubuntu开机后会自动执行的脚本,我们可以在该脚本内添加命令行指令。该脚本位于/etc/路径下,需要root权限才能修改。该脚本具体格式如下:#!/bin/sh-e##rc.local##Thisscriptisexecutedatthee...

分段压缩

分段压缩

 举例说明:要将目录logs打包压缩并分割成多个100M的文件,可以用下面的命令:tarcjf-logs/|split-b100m-logs.tar.bz2.完成后会产生下列文件:logs.tar.bz2.aa,logs.tar.bz2.ab,logs.tar.bz2.ac要解压的时候只要...

python 筛选

python 筛选

 data=[0,9,3,2,1,3,2,-2,-1]result=[xforxindataifx>=0] ...

python 获取指定文件夹的大小

python 获取指定文件夹的大小

 defgetdirsize(dirpath):size=0forroot,dirs,filesinos.walk(dirpath):size+=sum([getsize(join(root,name))fornameinfiles])returnsize ...

linux下带有空格的文件怎么删除

linux下带有空格的文件怎么删除

如:helloworld文件第一种方式先用ls-i得到helloworld的inod(就是最前面的数字)假设这个数字是123,然后find.-inum123-execrm{}第二种方式用屏蔽,比如rm-frhelloworld ...

python 无法获取隐藏文件夹中的文件列表

python 无法获取隐藏文件夹中的文件列表

uu...

LINK : fatal error LNK1104: 无法打开文件“libboost_serialization-vc90-mt-gd-1_62.lib”

LINK : fatal error LNK1104: 无法打开文件“libboost_serialization-vc90-mt-gd-1_62.lib”

 boost安装:https://www.cnblogs.com/sea-stream/p/10205425.html 在vs中添加...

解决错误 fatal error C1010: unexpected end of file while looking for precompiled head

解决错误 fatal error C1010: unexpected end of file while looking for precompiled head

 在编译VS时候,出现fatalerrorC1010:unexpectedendoffilewhilelookingforprecompiledhead。  问题详细解释:致命错误C1010,在寻找预编译指示头文件时,文件未预期结束。就是没有找到预编译指示信息的问文件。...

C++ Boost在VS2015中的使用

C++ Boost在VS2015中的使用

   1.下载包 目录结构: 切换到上面的目录,然后运行bootstrap.bat执行完毕后会生成两个exe文件 继续执行bjam.exe结束后,目录如下 2.设置路径    测试#incl...

PCH Warning: header stop cannot be in a macro or #if block.

PCH Warning: header stop cannot be in a macro or #if block.

 在编写头文件时,遇到这么一个warning:PCHWarning:headerstopcannotbeinamacroor#ifblock.AnintellisensePCHfilewasnotgenerated.查询后大概原因是这样:如果一个头文件在你的工程或解决方案中,没有被任何其他...