整数 (int
)
所有整数。有关详细信息,请参阅 数字。
返回值
以下函数和方法将返回整数对象。
get_option()
bool.to_int()
cfg_data.get()
cfg_data.get_unquoted()
compiler.alignment()
compiler.compute_int()
compiler.sizeof()
list.length()
runresult.returncode()
str.to_int()
整数方法
int.is_even()
如果数字为偶数,则返回 true。
签名
bool is_even()
int.is_odd()
如果数字为奇数,则返回 true
签名
bool is_odd()
int.to_string()
将数字的值作为字符串返回。
签名
# Returns the value of the number as a string
str to_string(
int [fill], # Left fill the string with zeros until it reaches the length
)
参数
int.to_string()
方法接受以下位置参数
名称 | 类型 | 描述 | 标签 |
---|---|---|---|
fill |
int |
使用零填充字符串左侧,直到其长度达到此参数指定的长度。前导负号计入长度,并在 |
[可选] |
搜索结果为