Advertisement
EXTREMEXPLOIT

Package Information Calculator

Apr 10th, 2019
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. #  S = N*(1-P)*LD
  2. # DFile = N * L/1
  3. # P = 1-(1-Pe)**L
  4.  
  5. Pe = 0.0001
  6.  
  7. while True:
  8.     LD = int(input("LD Value:"))
  9.     L = LD + 448
  10.     P = 1-(1-Pe)**L
  11.     N = 16000000000/LD
  12.     S = N*(1-P)*LD
  13.     DFile = N * L/1
  14.  
  15.     print(str("P = ")+str(P))
  16.     print(str("N = ")+str(N))
  17.     print(str("S = ")+str(S))
  18.     print(str("DFile = ")+str(DFile))
  19.     print("\n")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement