Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

biggest number

lst = []
num = int(input('How many numbers: '))
for n in range(num):
    numbers = int(input('Enter number '))
    lst.append(numbers)
print("Maximum element in the list is :", max(lst), "
Minimum element in the list is :", min(lst))
Comment

PREVIOUS NEXT
Code Example
Python :: does pygame work on python 3.10.1 
Python :: image segmentation pyimagesearch 
Python :: convolutional layer of model architecture pass input_shape 
Python :: installing python3.8 in rpi 
Python :: spearman correlation seaborn 
Python :: groupby sum and mean 2 columns 
Python :: #clearing all keys new key in python 
Python :: python timestamp human readable 
Python :: how to load csv file pyspark in anaconda 
Python :: python parameter pack 
Python :: What is StringIndexer , VectorIndexer, and how to use them? 
Python :: add service files in setup.py ROS2 
Python :: "%(class)s" in django 
Python :: module django contrib admin has no attribute action ACTION_CHECKBOX_NAME 
Python :: pytest rerun last failed 
Python :: sort vs sorted python 
Python :: custom Yolo object detection python 
Python :: numpy how to apply interpolation all rows 
Python :: how to crack a 4 way handshake with python 
Python :: spark write progress bar jupyter 
Python :: python rename columns 
Python :: installing intelpython3_core using anaconda 
Python :: convert math expression as string to int 
Python :: tensorflow conv2d operation 
Python :: passport ocr python 
Python :: install matplotlib on nvidia jetson nx 
Python :: matplotlib FiveThirtyEight creating a signature 
Python :: how to accept invalidfileexception in python 
Python :: what is te meaning of nested in python 
Python :: sklearn model persistence 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =