import threadfrom time import sleep, ctime loops = [4,2]def loop0(): print 'start loop 0 at:', ctime() sleep(4) print 'loop 0 done at:', ctime() def l ...
分类:
编程语言 时间:
2020-04-14 16:37:04
阅读次数:
128
小学生c++编程资料 链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 提取码:uqm9 #include<iostream> #include<ctime> //需要调用time()函数 #include<cstdlib> //需要调用srand ...
分类:
编程语言 时间:
2020-04-14 00:36:45
阅读次数:
79
在Linux中,文件或者目录中有三个时间属性 atime ctime mtime 简名 全名 中文 作用 atime Access Time 访问时间 最后一次访问文件(读取或执行)的时间 ctime Change Time 变化时间 最后一次改变文件(属性或权限)或者目录(属性或权限)的时间 mt ...
分类:
系统相关 时间:
2020-04-02 13:10:27
阅读次数:
111
#include<iostream>#include<cstdio>#include<ctime>using namespace std;int a[1005][1005];inline int read(){//非常重要的快速读入代码 int x=0,sign=1; char c=getchar( ...
分类:
其他好文 时间:
2020-04-01 09:19:35
阅读次数:
87
一、random 模块 2.1 random 常用方法 import random print(random.random())#(0,1) float 大于0且小于1之间的小数 print(random.randint(1,3)) #[1,3] 大于等于1且小于等于3之间的整数 print(ran ...
分类:
其他好文 时间:
2020-03-30 23:08:15
阅读次数:
81
查看文件的时间属性的命令 stat 1.txt_bak atime:文件的内容被访问的时间(access time)。当“该文件的内容被取用”时,就会更新这个读取时间。ctime:改变权限或者属性时的时间(status time、或者change time)。mtime:内容变更时间(modific ...
分类:
系统相关 时间:
2020-03-22 17:28:41
阅读次数:
98
linux的touch命令一般在使用make的时候可能会用到,用来修改文件时间戳,或者新建一个不存在的文件。 1.命令格式: touch [选项]... 文件... 2.命令参数: -a 或--time=atime或--time=access或--time=use 只更改存取时间。 -c 或--no ...
分类:
其他好文 时间:
2020-03-20 13:04:20
阅读次数:
102
来源:https://blog.csdn.net/wh_sjc/article/details/70283843 进程间通信(IPC,InterProcess Communication)是指在不同进程之间传播或交换信息。 IPC的方式通常有管道(包括无名管道和命名管道)、消息队列、信号量、共享存储 ...
分类:
系统相关 时间:
2020-03-16 14:41:09
阅读次数:
84
Python3 日期和时间 Python 程序能用很多方式处理日期和时间,转换日期格式是一个常见的功能。 Python 提供了一个 time 和 calendar 模块可以用于格式化日期和时间。 时间间隔是以秒为单位的浮点小数。 每个时间戳都以自从 1970 年 1 月 1 日午夜(历元)经过了多长 ...
分类:
编程语言 时间:
2020-03-16 13:05:26
阅读次数:
73