How To Print Int Value In Python
Last updated April 21, 2023 by Jarvis Silva
If you are a beginner to python programming and you have created an int or integer value in your python program. Now you want to print the value of the integer but you don’t know how, then don’t worry this tutorial will teach you to print integer value in python.
Printing a Int Value in Python
num = 1;
print(num);
From the above code you can see we use the print() method to print the integer value, The print() method in python can be used to print integer, float, string etc.
You can test the above code in this online python compiler, when you run it you will see it has print the integer value 1 like below
1
This was a beginner python tutorial on printing integer value in python I hope you found it useful and helpful. If you want more python tutorials, than join our Telegram Channel for latest blog updates.
Here are some more python tutorials for you:
- Python program to check even or odd number.
- Python program to check whether a person is eligible to vote.
Thank you for reading, have a nice day 🙂