numpy.char.lower() 函数
此函数返回一个数组,其中的元素已转换为小写。 它为每个元素调用 str.lower。
import numpy as np print np.char.lower(['HELLO','WORLD']) print np.char.lower('HELLO')
它的输出结果如下 −
['hello' 'world'] hello
此函数返回一个数组,其中的元素已转换为小写。 它为每个元素调用 str.lower。
import numpy as np print np.char.lower(['HELLO','WORLD']) print np.char.lower('HELLO')
它的输出结果如下 −
['hello' 'world'] hello
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。