Читать книгу Learn Python quick - Jens Braun - Страница 15

Integers

Оглавление

Integers are numbers with no decimal parts, such as -5, -4, -3, 0, 5, 7 etc.

To declare an integer in Python, simply write variableName = initial value

Example:

userAge = 20, mobileNumber = 12398724

Learn Python quick

Подняться наверх