python 记录

  • stringVar.count('x') - counts the number of occurrences of 'x' in stringVar
  • stringVar.find('x') - returns the position of character 'x'
  • stringVar.lower() - returns the stringVar in lowercase (this is temporary)
  • stringVar.upper() - returns the stringVar in uppercase (this is temporary)
  • stringVar.replace('a', 'b') - replaces all occurrences of a with b in the string
  • stringVar.strip() - removes leading/trailing white space from string
  • int(variable) - casts variable to integer
  • str(variable) - casts variable to string
  • float(variable) - casts variable to float (number with decimal)

从官方帮助文档,我们可以看出下面的特性:
1、内置函数(built-in)
2、接受3个参数分别是start, stop和step(其中start和step是可选的,stop是必需的)
3、如果没有指定start,默认从0开始(Python都是从0开始的)
4、如果没有指定step,默认step是1。(step不能是0,如果指定step为0,“ValueError: range() step argument must not be zero”
      将会被抛出。



python queue get(True)方法
调用队列对象的get()方法从队头删除并返回一个项目。可选参数为block,默认为True。如果队列为空且block为True,get()就使调用线程暂停,直至有项目可用。如果队列为空且block为False,队列将引发Empty异常。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值