numpy.core.defchararray.startswith()函数返回一个布尔数组,该数组为True,其中的字符串元素以前缀开头,否则为False。
用法: numpy.core.defchararray.startswith(arr, prefix, start = 0, end = None)
参数:
arr:[str或Unicode的array-like] str的Array-like。
prefix:[str]输入字符串。
开始,结束:[int,可选]使用可选的开始,从该位置开始测试。在可选端,停止在该位置进行比较。
Return:[ndarray]返回布尔数组。
代码1:
Python3
# Python program explaining
# numpy.char.startswith() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal"
prefix = 'Geeks'
gfg = geek.char.startswith(arr, prefix, start = 0, end = None)
print (gfg)
输出:
True
代码2:
Python3
# Python program explaining
# numpy.char.startswith() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal"
prefix = 'None'
gfg = geek.char.startswith(arr, prefix, start = 0, end = None)
print (gfg)
输出:
False
相关用法
- Numpy string less()用法及代码示例
- Numpy string upper()用法及代码示例
- Numpy string isnumeric()用法及代码示例
- Python numpy string replace()用法及代码示例
- Numpy string lower()用法及代码示例
- Numpy string title()用法及代码示例
- Numpy string zfill()用法及代码示例
- Python numpy string splitlines()用法及代码示例
- Numpy string rjust()用法及代码示例
- Numpy string islower()用法及代码示例
- Numpy string isdigit()用法及代码示例
- Numpy string strip()用法及代码示例
- Numpy string swapcase()用法及代码示例
- Numpy string isspace()用法及代码示例
- Numpy string translate()用法及代码示例
- Numpy string rstrip()用法及代码示例
- Numpy string lstrip()用法及代码示例
- Numpy string rsplit()用法及代码示例
- Python numpy string rpartition()用法及代码示例
- Numpy string isdecimal()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 Numpy string operations | startswith() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。