- 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异常。