Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python finding mead

# Write a program that take 3 input from user and print the average of values

print("Type 3 Numbers To Find The Mead Of Them")

a = int(input("Type The First Number: "))
b = int(input("Type The Second Number: "))
c = int(input("Type The Third Number: "))

d = a + b + c

e = d / 3

print(f"The Mead Of The Three Numbers Is {e}")
Comment

PREVIOUS NEXT
Code Example
Python :: how to use js in python 
Python :: how to return and use a single object in custom template filters django 
Python :: remap values in a column based on condition from another dataframe 
Python :: for i in range(6, 11): print(i, end="") 
Python :: sorted string dict approach 
Python :: scikit learn lazy predict 
Python :: how to find the index of a specific number in pythong? 
Python :: python get text that is already printed 
Python :: plt hist random normal distribution 
Python :: python create empty list with size 
Python :: dict keys in tcl 
Python :: build numpy array 
Python :: find a paragraph in requests-html 
Python :: Python NumPy atleast_2d Function Syntax 
Python :: run all pycharm jupyter notebook 
Python :: find duplicate row in python sqlite database 
Python :: Python NumPy ascontiguousarray Function Example List to an array 
Python :: django on-delete options 
Python :: Python NumPy dsplit Function 
Python :: pass dictionary to random forest regressor 
Python :: NumPy rot90 Syntax 
Python :: check if string is palindrome using recursion in python 
Python :: django view - mixins and GenericAPIView (retrieve, update or delete - GET, PUT, DELETE) 
Python :: enumerate and looping backward 
Python :: send http request from python with quesry 
Python :: QDateEdit.date().toString("MMMM dd, yyyy") does not display months in English 
Python :: python random number between 1000 and 9999 
Python :: selsearch 
Python :: install python 3 ubuntu 16.04 
Python :: win10 python com ports 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =