Converts a Boolean
, String
, or decimal Number
to an integer.
int()
converts values to integers. Integers are positive or negative numbers without decimals. If the original value has decimals, as in -34.56, they're removed to produce an integer such as -34.
The parameter, n
, is the value to convert. If n
is a Boolean, as in int(false)
or int(true)
, then the number 0 (false
) or 1 (true
) will be returned. If n
is a string or number, as in int('45')
or int(67.89)
, then an integer will be returned. If an array is passed, as in int([12.34, 56.78])
, then an array of integers will be returned.
Note: If a value can't be converted to a number, as in int('giraffe')
, then the value NaN
(not a number) will be returned.
उदाहरण
सिंटैक्स
int(n)
int(ns)
पैरामीटर्स
value to convert.
values to convert.
Returns
संबंधित संदर्भ
boolean
किसी संख्या या स्ट्रिंग को उसके बूलियन प्रतिनिधित्व में परिवर्तित करता है। किसी संख्या के लिए, कोई भी गैर-शून्य मान (सकारात्मक या नकारात्मक) सत्य का मूल्यांकन करता है, जबकि शून्य का मूल्यांकन गलत होता है। एक स्ट्रिंग के लिए, "सही" मान सत्य का मूल्यांकन करता है, जबकि कोई अन्य मान गलत का मूल्यांकन करता है। जब संख्या या स्ट्रिंग मानों की एक सरणी पास की जाती है, तो समान लंबाई के बूलियन की एक सरणी वापस आ जाती है। .
byte
Converts a Boolean, String, or Number to its byte value.
char
Converts a Number or String to a single-character String.
float
Converts a String to a floating point (decimal) Number.