摘要: 一、数值类型(int、float)# %d、%f是占位符>>> a = 3.1415926>>> print("%d"%a) #%d只能输出整数,int类3>>> print("%f"%a) #%f输出... 阅读全文
posted @ 2017-10-17 19:44 cn_wk 阅读(200) 评论(0) 推荐(0)
摘要: https://stackoverflow.com/questions/21129020/how-to-fix-unicodedecodeerror-ascii-codec-cant-decode-byte ... 阅读全文
posted @ 2017-10-17 11:13 cn_wk 阅读(31) 评论(0) 推荐(0)
摘要: Linux进程状态解析之R、S、DLinux是一个分时操作系统,能够在一个cpu上运行多个程序,每个被运行的程序实例对应一个或多个进程,这里介绍一下Linux进程状态。作者:佚名来源:CSDN|2010-03-0... 阅读全文
posted @ 2017-10-17 11:08 cn_wk 阅读(625) 评论(0) 推荐(0)