Antilog calculation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Antilog calculation

How to make an antilog calculator in Python or Java

21st Mar 2019, 5:10 AM
Rishabh
1 Answer
+ 5
hi Rishabh, that is very simple. computing of antilog: y = 10 ** x where x = number that should be calculated where y = result of calculation = antilog code: # calculate antilog num = float(input('Enter number to calculate:')) print('Result is: ', 10 ** num)
21st Mar 2019, 9:46 AM
Lothar
Lothar - avatar