Fork me on GitHub
上一页 1 ··· 19 20 21 22 23
  2019年11月25日
摘要: # 集合:{}花括号内用逗号分割,每个元素都必须是不可变类型,元素不能重复,无序# 作用:关系运算,去重# s={1,2,3,1} # s=set{1,2,3,1}# print(type(s)) # <class 'set'># 长度# print(len(s)) # 3# 成员运算in和not 阅读全文
posted @ 2019-11-25 08:09 OBOS 阅读(89) 评论(0) 推荐(0) 编辑
  2019年11月22日
摘要: # 反转 reverse# l=['lili','asdf','qwer','80000']# l.reverse()# print(l) # ['80000', 'qwer', 'asdf', 'lili']# 排序 sort# l=[1,3,5,7,2,4]# l.sort()# print(l 阅读全文
posted @ 2019-11-22 20:58 OBOS 阅读(220) 评论(0) 推荐(0) 编辑
摘要: # for i in range(0,10): # 结果是0-9,顾头不顾尾# print(i)# for i in range(0,10,2): # 结果是0,2,4,6,8,步长为2# print(i)# msg='hello world'# for i in range(0,len(msg)) 阅读全文
posted @ 2019-11-22 09:21 OBOS 阅读(159) 评论(0) 推荐(0) 编辑
  2019年11月20日
摘要: # input = input('age>>:')# input = int(input)# if input > 18:# print('大了')# elif input < 18:# print('小了')# else:# print('ok')# count = 0# while count 阅读全文
posted @ 2019-11-20 22:07 OBOS 阅读(181) 评论(0) 推荐(0) 编辑
摘要: # 格式化输出# name=input('name<<:')# age=input('age<<:')# print('my name is %s,my age is %s'%(name,age))# print('my name is [%s],my age is {%s}'%(name,age) 阅读全文
posted @ 2019-11-20 22:06 OBOS 阅读(161) 评论(0) 推荐(0) 编辑
摘要: '''level=11print(type(level))''''''num=12print(type(num))''''''sum=int(13)print(type(sum))''''''age=int(18)print(age,type(age),id(age))''''''状态:薪资,身高, 阅读全文
posted @ 2019-11-20 22:05 OBOS 阅读(191) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23