老实小虾米

文章
2
资源
0
加入时间
2年10月17天

Python语法一 (人生苦短,我用Python)

Pythong 基本语法一、输入:money=raw_input("输入奖金 金额:")   #读取键盘输入,将所有输入作为字符串看待float(raw_input("输入奖金 金额:"))   #强制转化为浮点型数据二、输出:打印print n,     #带,号可以空一个空格在一行输出,不带的话会在一列输出print format(i*j,'3d'),

Linux dev_attr 设备文件操作

1. 写法A:static ssize_t xxx_show(struct device *dev, struct device_attribute *attr, char *buf){ return sprintf(buf,"show something\n");}static ssize_t xxx_store(struct device *dev, ...