月光魔草

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2020年1月11日

摘要: 1、常见的增删改查功能 #!/usr/bin/python # -*- coding: UTF-8 -*- li=[1,2,3,'a','bb','ccc']#list print(li[1:4]) del(li[2]) print(li) li.insert(4,'dddd') print(li) 阅读全文
posted @ 2020-01-11 20:15 月光魔草 阅读(315) 评论(0) 推荐(0)

摘要: 1、随机函数 import random a=random.randint(0,100) 2、类型转换 int (a) str(b) bool(c) 阅读全文
posted @ 2020-01-11 20:05 月光魔草 阅读(478) 评论(0) 推荐(0)

摘要: 常见str函数补充 str.upper()//全部变大写 str.bit_length()//求长度 str.capitalize()#首字母大写 str.casefold() str.lower()#以上两个均小写 str.center(20,'#')#20格居中,以#填充 str.ljust(2 阅读全文
posted @ 2020-01-11 11:23 月光魔草 阅读(498) 评论(0) 推荐(0)