python program estimated valuation analysis Magino Mines Total Proven Probable Reserves Data (python program estimated valuation analysis), results are rather fascinating..
Enter Tonnes:65500000
Enter AU Grade:
1.15
Enter Price Of Gold:
2000
Enter Cash Costs:
700
Enter Shares Float:
796615000
Your Asset Valuation Report estimated price per share is:3.952074064468374
import math
import sys
def main():
tonnes = float(input("Enter Tonnes: "))
grade = float(input("Enter AU Grade: "))
goldprice = float(input("Enter Price Of Gold: "))
cashcosts = float(input("Enter Cash Costs: "))
sharesfloat = float(input("Enter Shares Float: "))
goconversion = float(31.1034768)
shareprice = float()
totalvalueoz = float()
saleprice = float(goldprice - cashcosts)
oz = float()
oz = grade * tonnes / goconversion
totalvalueoz = oz * saleprice
shareprice = totalvalueoz / sharesfloat
print ("Your Asset Valuation Report estimated price per share is:",shareprice)
sys.exit
if __name__ == "__main__":
main()
Online IDE - Code Editor, Compiler, Interpreter (online-ide.com)