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

Taking multiple inputs from user in Python

2 min read

 

Taking multiple inputs from user in Python


The developer often wants a user to enter multiple values or inputs in one line. In C++/C user can take multiple inputs in one line using scanf but in Python user can take multiple values or inputs in one line by two methods. 

  • Using split() method
  • Using List comprehension

Using split() method : 
This function helps in getting multiple inputs from users. It breaks the given input by the specified separator. If a separator is not provided then any white space is a separator. Generally, users use a split() method to split a Python string but one can use it in taking multiple inputs.

Syntax : 

input().split(separator, maxsplit)

Example : 

# Python program showing how to
# multiple input using split
  
# taking two inputs at a time
x, y = input("Enter two values: ").split()
print("Number of boys: ", x)
print("Number of girls: ", y)
print()
  
# taking three inputs at a time
x, y, z = input("Enter three values: ").split()
print("Total number of students: ", x)
print("Number of boys is : ", y)
print("Number of girls is : ", z)
print()
  
# taking two inputs at a time
a, b = input("Enter two values: ").split()
print("First number is {} and second number is {}".format(a, b))
print()
  
# taking multiple inputs at a time 
# and type casting using list() function
x = list(map(int, input("Enter multiple values: ").split()))
print("List of students: ", x)

Output: 
 

Using List comprehension : 
List comprehension is an elegant way to define and create list in Python. We can create lists just like mathematical statements in one line only. It is also used in getting multiple inputs from a user. 

Example: 

# Python program showing
# how to take multiple input
# using List comprehension
  
# taking two input at a time
x, y = [int(x) for x in input("Enter two values: ").split()]
print("First Number is: ", x)
print("Second Number is: ", y)
print()
  
# taking three input at a time
x, y, z = [int(x) for x in input("Enter three values: ").split()]
print("First Number is: ", x)
print("Second Number is: ", y)
print("Third Number is: ", z)
print()
  
# taking two inputs at a time
x, y = [int(x) for x in input("Enter two values: ").split()]
print("First number is {} and second number is {}".format(x, y))
print()
  
# taking multiple inputs at a time 
x = [int(x) for x in input("Enter multiple values: ").split()]
print("Number of list is: ", x) 

Output : 
 

Note: The above examples take input separated by spaces. In case we wish to take input separated by comma (, ), we can use the following: 

# taking multiple inputs at a time separated by comma
x = [int(x) for x in input("Enter multiple value: ").split(",")]
print("Number of list is: ", x) 

You may like these posts

  •  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…
  •  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…
  •  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 …
  •  Associativity: If an expression contains two or more operators with the same precedence then Operator Associativity is used to determine. It can either be Left to&n…
  •  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…

Post a Comment

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