摘要:
#include #include #include #include struct infomation{ char plate_num[16]; char time_str[32]; }; #define ROWNUM 20 #define COLUMN 5 int main(void) { int i = 0; // 20*5 ... 阅读全文
posted @ 2018-06-18 09:38
PKICA
阅读(244)
评论(0)
推荐(0)
摘要:
实现目标: 服务器A免密登录服务器B 在服务器A上生成密钥对 ~$ ssh-keygen -t rsaGenerating public/private rsa key pair.Enter file in which to save the key (/home/local/.ssh/id_rsa 阅读全文
posted @ 2018-06-16 17:27
PKICA
阅读(166)
评论(2)
推荐(1)
摘要:
linux中的sleep为库调用(library calls),其声明文件为unistd.h。 unsigned int sleep(unsigned int seconds); 如果进程或者线程调用sleep请求的休眠的时间seconds过去,那么会返回0;如果休眠期间被信号中断,那么返回剩余的休 阅读全文
posted @ 2018-06-15 15:49
PKICA
阅读(360)
评论(0)
推荐(0)
摘要:
./pyModuleTest/├── addutil│ ├── add.py│ ├── add.pyc│ ├── __init__.py│ ├── __init__.pyc│ └── readMe.txt└── utilModuleTest.py #!/usr/bin/env python # -* 阅读全文
posted @ 2018-06-14 11:23
PKICA
阅读(1055)
评论(0)
推荐(0)
摘要:
Pycharm在创建py文件时,如何自动添加文件头注释(类似于钩子特性)? 阅读全文
posted @ 2018-06-07 16:24
PKICA
阅读(182)
评论(0)
推荐(0)
摘要:
Python 函数传递list,传递dict 以及*args和**kargs 函数之间传递list: *args:输入数据长度不确定,通过*args将任意长度的参数传递给函数,系统自动将任意长度参数用list(tuple定长,特殊的list)表示 **kargs:输入数据长度不确定,系统自动将任意长 阅读全文
posted @ 2018-06-07 09:00
PKICA
阅读(3332)
评论(0)
推荐(0)
摘要:
RobotFrameWork(三)数据类型 1.1 数字变量 执行结果: 1.2 布尔变量和None/null 执行结果: 1.3 字符串、元组、list和字典 执行结果: 1.4 space和empty 执行结果: 阅读全文
posted @ 2018-06-07 08:58
PKICA
阅读(1451)
评论(0)
推荐(0)
浙公网安备 33010602011771号