整数 (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

使用零填充字符串左侧,直到其长度达到此参数指定的长度。前导负号计入长度,并在 - 字符之后而不是之前插入填充。如果提供的值小于或等于原始字符串的长度,则返回原始字符串。

[可选]


搜索结果为