Computer Science Related Others Courses AvailableThe Best Codder.blogspot.com
Posts

Taking input in Python

2 min read

Taking input in Python

 Developers often have a need to interact with users, either to get data or to provide some sort of result. Most programs today use a dialog box as a way of asking the user to provide some type of input. While Python provides us with two inbuilt functions to read the input from the keyboard. 

 

  • input ( prompt )
  • raw_input ( prompt )

input (): This function first takes the input from the user and converts it into a string. The type of the returned object always will be <type ‘str’>. It does not evaluate the expression it just returns the complete statement as String. For example, Python provides a built-in function called input which takes the input from the user. When the input function is called it stops the program and waits for the user’s input. When the user presses enter, the program resumes and returns what the user typed. 


Syntax:

inp = input('STATEMENT')
    
Example:
1.  >>> name = input('What is your name?\n')     # \n ---> newline  ---> It causes a line break
            >>> What is your name?
            Ram
            >>> print(name)
            Ram 
            
            # ---> comment in python

# Python program showing 
# a use of input()
  
val = input("Enter your value: ")
print(val)

Output:

 

Taking String as an input:

name = input('What is your name?\n')     # \n ---> newline  ---> It causes a line break
print(name)

Output:

What is your name?
Ram
Ram

How the input function works in Python : 
 

  • When input() function executes program flow will be stopped until the user has given input.
  • The text or message displayed on the output screen to ask a user to enter an input value is optional i.e. the prompt, which will be printed on the screen is optional.
  • Whatever you enter as input, the input function converts it into a string. if you enter an integer value still input() function converts it into a string. You need to explicitly convert it into an integer in your code using typecasting. 

You may like these posts

  •  Python program maximum numberGiven three number a b and c, the task is that we have to find the greatest element in among in given numberExamples:Input : a = 2, b = 4, c = 3 …
  •  loops in pythonPython programming language provides the following types of loops to handle looping requirements. Python provides three ways for executing the loops. While all…
  •  How to Convert Data Types in PythonPython is a dynamically typed language, so programmers might not always consider the type of each variable they create. However, the type o…
  •  Precedence of Python OperatorsAn expression is a collection of numbers, variables, operations, and built-in or user-defined function calls. The Python interpreter can evaluat…
  •  Python Program to Check if a Number is Odd or EvenOdd and Even numbers:If you divide a number by 2 and it gives a remainder of 0 then it is known as even number, otherwise an…
  •  Python Program to Find the Factorial of a NumberWhat is factorial?Factorial is a non-negative integer. It is the product of all positive integers less than or equal to that n…

Post a Comment

© 2025Python . The Best Codder All rights reserved. Distributed by