2012年12月4日

c primer plus----第4章 字符串和格式化输入/输出(一)

摘要: //==============================================================================#include #include #define DENSITY 62.4int main() { float weight, volume; int size, letters; char name[40]; printf("Hi! What is your name?\n"); scanf("%s", name); //指针 printf("%s, what is your wei 阅读全文

posted @ 2012-12-04 16:04 屁屁侠 阅读(200) 评论(0) 推荐(0) 编辑

Python参考手册----第一章: Python简介(四)

摘要: #1.8集合(JAVA_SET)#集合用于包含一组无序的对象#set()函数创建集合#集合无法通过数字进行索引#集合中的元素不能重复s = set([3,5,9,10])t = set("Hello")#>>> t#set(['H','e','l','o'])#集合支持的操作a = t | s #并集a = t & s #交集c = t - s #差集(项在t中,但是不在s中)d = t ^ s #对称差集(项在t或s中,但是不会出现在二者中)#添加元素t.add('x' 阅读全文

posted @ 2012-12-04 10:16 屁屁侠 阅读(259) 评论(0) 推荐(0) 编辑

导航