Monday, June 29, 2020

Python Class 168 (Function Calls) - Kapil

print ("*** Four function call application example ***")

def MUL_function(n1,n2):
        return (n1*n2)

def DEV_function(n1,n2):
        return (n1/n2)

def SQY1_function(n1,n2):
        return(n1*2, n2*2)

def SQY2_function(n1,n2):
        return(n1**2, n2**2)

print ("\n")
print("The multiply function call result is:",MUL_function(3,3))
print ("\n")
print("The divide function call result is:",DEV_function(10,5))
print ("\n")
print("The squre root function call result is:",SQY1_function(10,5))
print ("\n")
print("The squre root function call result is:",SQY2_function(10,5))


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Friday, June 26, 2020

Python Class 167 (Event Probability) - Kapil


print ("*** Application to know the probability of an event ***")

def PEV_function(n1,n2):
        return (n1/n2)

print ("\n")
#P(E) = (Number of outcomes favorable)/(Total number of outcomes)
OFV = float(input("Please enter the current Number of outcomes favorable:"))
TOV = float(input("Please enter the total number of outcomes:"))

print("The probability of an event is:",PEV_function(OFV,TOV))

-----------------------------------------------------------------------------------------------------------

print ("*** Application to know the probability of an event ***")

print ("\n")

#P(E) = (Number of outcomes favorable)/(Total number of outcomes)
OFV = float(input("Please enter the current Number of outcomes favorable:"))
TOV = float(input("Please enter the total number of outcomes:"))

PEV = OFV/TOV

print("The probability of an event is:",PEV)



===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Thursday, June 25, 2020

Python Class 166 (Current Density) - Kapil

print ("*** Application to know the current density of an object ***")

print ("\n")

IV = float(input("Please enter the current flowing through the conductor in Amperes:"))
AV = float(input("Please enter the denotes the cross-section area in m2:"))

CDV = IV/AV

print("The  current density is:",CDV)


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Tuesday, June 23, 2020

Python Class 165 (Transformer Formula) - Kapil

print ("*** Application to calculate the transformer formula ***")

print ("\n")

# primary voltage (Vp = Np / Ns * Vs)

NPV = float(input("Please enter the number of turns in the primary:"))
NSV = float(input("Please enter number of turns in the secondary:"))
VSV = float(input("Please enter the secondary voltage:"))

VPV1 = NPV / NSV 

VPV2 = VPV1 * VSV

print ("\n")

print("The the transformer formula value (Vp) is: %.2f" %VPV2,"V")


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Monday, June 22, 2020

Python Class 164 (Wave Energy Density) - Kapil


print ("*** Application to calculate the Wave Energy Density ***") print ("\n") # The wave energy formula is given by, WDV * EGV * (H * H)/16 WHV1 = float(input("Please enter the Wave height (H) in meters:")) WHV2 = WHV1 * WHV1 #Water density ρ = 999.97 kg/m3 WDV = 999.97 #Gravity g = 9.8 m/s2 EGV = 9.8 WED1 = WDV * EGV * WHV2 WED2 = WED1 / 16 print ("\n") print("The the Wave Energy Density value is: %.2f" %WED2,"J")


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg


Saturday, June 20, 2020

Python Class 163 (Celsius Temperature) - Kapil

print(" **** Application to calculate Celsius Temperature. **** ")

print("\n")

#C = (F-32)/1.8

FV = float(input("Please enter the Temperature in Fahrenheit: "))

CV = (FV-32)/1.8

#("%.2f" % a) - Limiting floats to two decimal points
print("\n")

print("The Temperature in Celsius is:%.2f" %CV)


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Python Class 163 (Fahrenheit Temperature) - Kapil

print(" **** Application to calculate Fahrenheit Temperature. **** ") print("\n") #F = (C * 1.8) + 32 CV = float(input("Please enter the Temperature in Celsius: ")) FV = (CV * 1.8) + 32 print("The Temperature in Fahrenheit is:",FV)


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 


Friday, June 19, 2020

Python Class 162 (Surface Tension) - Kapil

print(" **** Application to calculate surface tension. **** ")

def force_function(n1,n2):
          return (n1/n2)

print("\n")
#T = F/L

FV = float(input("Please enter the force per unit length in Newton: "))
LV = float(input("Please enter length in which force act in per Meter: "))

print("The surface tension of the liquid:", force_function(FV, LV), "N/m")


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 



Thursday, June 18, 2020

Python Class 161 (Average Acceleration) - Kapil

print ("*** Application to calculate the Average Acceleration ***")

def AA_function(n1n2):
  return(n1/n2)

print ("\n")

#Average Acceleration = V/T

VV = float(input("Please enter the final velocity value in KM:"))
TV = float(input("Please enter the elapsed time value in hours:"))

print("The Average Acceleration value is:",(AA_function(VV, TV)),"KM per hour")


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 

Wednesday, June 17, 2020

Python Class 160 (Gross Margin) - Kapil

print ("*** Application to calculate the Gross Margin ***")

def GM_function(n1,n2):
  return(n1/n2)

print ("\n")

#Gross Margin = Gross Profit / Revenue

GPV = float(input("Please enter the gross profit value:"))
RV = float(input("Please enter the revenue value:"))

print("The Gross Margin is:",(GM_function(GPV, RV)))



===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 

Python Class 159 (Markup Value) - Kapil

print ("*** Application to calculate the Markup Value ***")

def MV_function(n1,n2):
  return(n1/n2)

print ("\n")

#Markup = Gross Profit / Cost

GPV = float(input("Please enter the gross profit value:"))
CV = float(input("Please enter the cost value:"))

print("The markup value is:",(MV_function(GPV, CV)))



===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 

Python Class 158 (Gross Profit) - Kapil

print ("*** Application to calculate the Gross Profit ***")

def GP_function(n1n2):
  return(n1-n2)

print ("\n")

#Gross Profit = Revenue - Cost

RV = float(input("Please enter the revenue value:"))
CV = float(input("Please enter the cost value:"))

print("The gross profit value is:",(GP_function(RV, CV)))


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 

Tuesday, June 16, 2020

Python Class 157 (Expecting Returns) - Kapil Sharma

print ("*** Application for Expecting Returns Calculator ***")

print ("\n")

CPV = float(input("Please enter the Closing Price:"))
OPV = float(input("Please enter the Opening Price value:"))

ER1 = CPV - OPV
ER2 = ER1/OPV
ER3 = ER2 * 100
#Expecting Returns

print ("Total Expecting Returns is",(ER3),"%")




===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 

Monday, June 15, 2020

Python Class 156 (Stock Turnover) - Kapil Sharma

print ("*** Application for Stock Turnover Calculator ***")

print ("\n")

CSV = float(input("Please enter the Cost of Sales:"))
ASV = float(input("Please enter the Average Stock value:"))

ST = CSV / ASV

print ("Total Stock Turnover is",(ST))


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 

Sunday, June 14, 2020

Python Class 155 (P/E, Price to Earnings Ratio) - Kapil Sharma

#Price-to-Earnings Ratio = Price per Share / Annual Earnings per Share
def PriceToEarningsRatio_function(n1,n2):
                           return(n1/n2)
SP1 = float(input("Please enter the share price value:"))
AE2 = float(input("Please enter the annual earnings value:"))
print("The Price to Earnings Ratio is:",PriceToEarningsRatio_function(SP1, AE2), "%")

===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 

Saturday, June 13, 2020

Python Class 154 (Mean Value) - Kapil Sharma

print (" *** Application for calculation Mean value *** ")
print("\n")
FV = float(input("Please enter the first value:"))
SV = float(input("Please enter the second value:"))
TV = float(input("Please enter the third value:"))
TTV = float(input("Please enter the number of terms count:"))
print("\n")
M1 = FV + SV + TV 
M2 = M1/TTV 
print("The mean value is:",M2)


===============================================================

https://github.com/bornfreesoul/PythonLessons
 
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg 




Friday, June 12, 2020

Python Class 153 (Simple Interest) - Kapil Sharma

print ("*** Application for Simple Interest  Calculator ***")

print ("\n")

PV = float(input("Please enter the Total principal value:"))
RV = float(input("Please enter the Interest rate value:"))
TV = float(input("Please enter the Time periods value:"))

R2 = RV/100

I = PV * R2 * TV

print ("The Simple Interest is:",(I))


===============================================================

https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Wednesday, June 10, 2020

Python Class 152 (Average Speed) - Kapil Sharma

print ("*** Application for Average Speed Calculator ***")

print ("\n")

TV = float(input("Please enter the Total distance value:"))
EV = float(input("Please enter the elapsed time value:"))

AS = TV / EV

print ("Total Average speed is",(AS),"Km/hrs.")


===============================================================

https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Python Class 151 (Volume) - Kapil Sharma

print ("*** Application for Volume Calculator ***")

print ("\n")

LV = float(input("Please enter the Length value:"))
WV = float(input("Please enter the Width value:"))
HV = float(input("Please enter the Hight value:"))

V = LV * WV * HV

print ("Total Volume (V) is", (V), "meters3.")


===============================================================

https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Python Class 150 (Equity Value) - Kapil Sharma

print ("*** Application for Equity Value Calculator ***")

print ("\n")

SO = float(input("Please enter the Share outstanding value:"))
SP = float(input("Please enter the Share price value:"))

EV = SO * SP

print ("Total Equity value (EV) is", (EV))


===============================================================

https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Tuesday, June 9, 2020

Python Class 149 (Average Power) - Kapil Sharma

print ("*** Application for Average Power Calculator ***")

print ("\n")

EV = float(input("Please enter the Energy in joules value:"))
TV = float(input("Please enter the time period in seconds value:"))

P = EV / TV

print ("Total average power P in watts (W) is", (P))



===============================================================

https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Monday, June 8, 2020

Python Class 148 (Distance) - Kapil Sharma


print ("*** Application for Distance calaculation Formula ***")

print ("\n")

SV = float(input("Please enter the Speed per hour value:"))
TV = float(input("Please enter the time in hours value:"))

# D = S * T

Distance = SV * TV

print ("Total Distance going to be covered is", (Distance), "KM.")


===============================================================

https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Python Class 147 (Time) - Kapil Sharma

print ("*** Application for Time calaculation Formula ***")

print ("\n")

DV = float(input("Please enter the Distance in meters value:"))
SV = float(input("Please enter the Speed per hour value:"))

# T = D/S

DV1 = DV/1000

Time = DV1 / SV 

print ("Total Time taken to cover the distance is", (Time), "hours.")


===============================================================

https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Python Class 146 (Speed) - Kapil Sharma


print ("*** Application for Speed calaculation Formula ***")

print ("\n")

DV = float(input("Please enter the Distance in meters value:"))
TV = float(input("Please enter the Time taken in hours value:"))

# S = D/T

DV1 = DV/1000

Speed = DV1 / TV 

print ("The total Speed is:" , (Speed), "KM per hrs.")


===============================================================

https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Sunday, June 7, 2020

Python Class 145 (Relative Frequency) - Kapil Sharma

#Relative Frequency  = Successful trials / Total number of trials 

def RelativeFrequency_function(n1,n2):
                         return(n1/n2)

ST1 = float(input("Please enter the successful trials count:"))
TT2 = float(input("Please enter the number of trials count:"))

RF = RelativeFrequency_function(ST1, TT2) * 100

print("The Relative frequency percentage is:",RF, "%")


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Saturday, June 6, 2020

Python Class 144 (Profit Margin) - Kapil Sharma

def ProfitMargin_function(n1,n2):
                  return (n1/n2)

NP1 = float(input("Please enter Net Profit After Tax value:"))
NS2 = float(input("Please enter Net Sales value:"))

#Profit Margin Formula = Net Profit After Tax / Net Sales 

print ("The Profit Margin is:",(ProfitMargin_function(NP1, NS2)))


===============================================================

https://github.com/bornfreesoul/PythonLessons

https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg

Blockchain: 101 (By - Kapil Sharma)

 https://testing-mines.blogspot.com/2021/10/blockchain-101-by-kapil-sharma.html Blockchain through the following attributes: Distributed:  T...