Python

Write a Python program to print an integer

Write a Python program to print an integer

problem – How to write a program to print an integer in Python?

In this tutorial, we discuss the simple concept of Write a Python program to print an integer

input – output

In this article, we are going to learn How to write a program to print an integer in Python language

The following shows two different ways to How to write a program to print an integer and there is an example given to each

The first Example is done by declared and initialized variable

the second Example is done through the user entered the value of the variable

Python program to print an integer

Program 1

#print an integer in Python
value=50;  #initilization of variable value
print("The integer value is ",value)  #Didplay the variable value

When the above code is executed it produces the following output

The integer value is  50

In this program,

  • Integer variable num is declared
  • Integer variable num is initialized
  • Then, the program has Displayed the output (value of variable num ) using  print() function

Python program to print an integer(Entered by user)

Program 2

#print an integer in Python
value=int(input("Enter a integer number: "));
#Ask input from your 
print("you enterd",value)  #Didplay the variable value

When the above code is executed it produces the following output

Enter a integer number: 100
you entered 100

Method

  1. The program requires input from the user
  2. Then the user enters the input value
  3. The program will read the input using input() function and stores the num variable
  4. Then, the program Display the value which  is in variable num using print() function

Similar post

Write a C++ program to print an integer

Write a Java program to print an integer

Write a C program to print an integer

 

Suggested post

Operator Python language

Hello world program in Python language

Data type in Python language

 

 

 

Karmehavannan

Recent Posts

Subtract two numbers using method overriding

Subtract two numbers using method overriding   Program 1

4 weeks ago

PHP Star triangle Pattern program

PHP Star triangle Pattern program Here's a simple Java program that demonstrates how to print…

4 weeks ago

Using function or method to Write temperature conversion : Fahrenheit into Celsius

Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…

1 year ago

Function or method:temperature conversion from Fahrenheit into Celsius – Entered by user

Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…

1 year ago

Write temperature conversion program: Fahrenheit into Celsius

Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…

1 year ago

How to write a program to convert Fahrenheit into Celsius

How to write a program to convert Fahrenheit into Celsius In this article, we will…

1 year ago

This website uses cookies.