Answers for "input data in list by user and sort list"

11

get list input from user in python

a = list(map(int,input("nEnter the numbers : ").strip().split()))
Posted by: Guest on September-17-2020
1

reading a list in python

strings = list(map(str,input().split()))
numbers = list(map(int, input().split()))
Posted by: Guest on August-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language