Tools, FAQ, Tutorials:
'int' Literals and Conversions
How to specify "int" values in Python code?
✍: FYIcenter.com
"int" values can be specified using "int" literals or
the int() conversion function as shown in this tutorial:
1. "int" literals in decimal digits as shown below:
>>> 1234 1234 >>> -1234 -1234 >>> 0 0
2. "int" literals in octal digits (prefixed with "0o") as shown below:
>>> 0o2322 1234 >>> -0o2322 -1234 >>> 0o0 0
3. "int" literals in hex digits (prefixed with "0x") as shown below:
>>> 0x4d2 1234 >>> -0x4d2 -1234 >>> -0x0 0
4. int() function converting other data types to "int":
>>> int(1234)
1234
>>> int("1234")
1234
>>> int(True)
1
>>> int(False)
0
>>> int(3.14159)
3
>>> int(3.64159)
3
>>> int(-3.64159)
-3
⇒ 'float' Literals and Conversions
⇐ Python Built-in Primitive Data Types
2023-01-06, ∼2166🔥, 0💬
Popular Posts:
How to access Query String parameters from "context.Request.Url.Que ry"object in Azure API Policy? Q...
How to Install Docker Desktop 2.5.0 on Windows 10? You can follow this tutorial to Install Docker De...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
How To Set session.gc_divisor Properly in PHP? As you know that session.gc_divisor is the frequency ...
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...