median in python
import statistics
statistics.median(list_name)median in python
import statistics
statistics.median(list_name)finding median on python
def calculate_median(n):
    N = len(n)
    n.sort()
    
    #find the median
    if N % 2 == 0:
        #if N is even
        m1 = N / 2
        m2 = (N / 2) + 1
        #Convert to integer, match post
        m1 = int(m1) - 1
        m2 = int(m2) - 1
        median = (n[m1] + n[m2]) / 2 
    else:
        m = (N + 1) / 2
        # Convert to integer, match position
        m = int(m) - 1
        median = n[m]
    
    return median
  
# Doing Math With Pythonmedian of numbers in python
def median(*args):
  y = args
  lst = []
  for i in y:
    lst.append(i)
  medInd = int(len(lst)/2)
  if len(lst)%2!=0:
    med = lst[medInd]
  else:
    med = (lst[medInd] + lst[medInd-1])/2
    
  return med
median(1,2,3,4,5,6,7,8)Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
