In Python, you can create an integer by simply typing a whole number. For example: pythonCopy codex = 5 y = -10 z = 0 In this example, is an integer with the value of 5, is an integer with the value of -10, and is an integer with the value of 0. x y z Basic Operations Integers support several basic arithmetic operations, including addition, subtraction, multiplication, and division. Here are some examples: pythonCopy codex = 5 y = 3 z = x + y # z is now 8 z = x - y # z is now 2 z = x * y # z is now 15 z = x / y # z is now 1.6666666666666667 Notice that when we divide two integers, the result is a float. If we want to perform integer division and get an integer result, we can use the double slash operator . Here's an example: // pythonCopy codex = 5 y = 3 z = x // y # z is now 1 Modulo Operator Another useful operation that integers support is the modulo operator, represented by the symbol. The modulo operator returns the remainder of dividing two integers. Here's an example: % pythonCopy codex = 5 y = 3 z = x % y # z is now 2 Comparisons Integers can also be compared using comparison operators, such as , , , and . These operators return a boolean value, which is either or . Here are some examples: > < >= <= True False pythonCopy codex = 5 y = 3 z = x > y # z is now True z = x < y # z is now False z = x >= y # z is now True z = x <= y # z is now False Converting Integers Sometimes, you may need to convert an integer to a different data type. For example, you may need to convert an integer to a string to display it on the screen. To convert an integer to a string, you can use the function. Here's an example: str pythonCopy codex = 5 s = str(x) # s is now "5" You can also convert a string to an integer using the function. Here's an example: int pythonCopy codes = "5" x = int(s) # x is now 5 Conclusion In this guide, we've explored everything you need to know about integers in Python. By understanding how to create and use integers, perform basic operations, and convert between data types, you'll be well-equipped to work with integers in your Python programs. Remember to practice and experiment with these concepts to gain a deeper understanding of Python. Good luck on your programming journey!