Calculate probability using python #trending #trycoding #yt #coding #phython #code #learnpython

preview_player
Показать описание
Hello everyone, this is Tanmay from Tanmay's Corner. Today I wrote a program in python to calculate the probability of any thing. User have to input the number of outcomes and total number of outcomes in python and it will show probability in form of p/q , in form of decimal and in the form of percentage as output. It is very easy to write a program in python. I used the basic python functions like print, input, integer, string , etc to write the code. I tried writing the program in a very simple and easy manner. I used replit for this , It is a free online software to write program in any language like Java , JavaScript, C++, Python , etc. This software can be used on any low powered device also. Since I am using replit there is the difference of time.

This is the link for the code:

Please share your results on replit or in the comment box of youtube. Thanks for watching this video.

The code:

t = 'PROBABILITY CALCULATOR'
print('\n')

n = int(input('Enter the number of outcomes: '))
N = int(input('Enter the number of total outcomes: '))

p_d = n/N
per = (n/N)*100

print('\n')
print('The probability is: ', n, '/', N)
print('The probability in decimals is : ', p_d)
print('The probability in percentage is :', per, '%')

The result:

PROBABILITY CALCULATOR

Enter the number of ou1
Enter the number of total outcomes: 2

The probability is: 1 / 2
The probability in decimals is : 0.5
The probability in percentage is : 50.0 %

PROBABILITY CALCULATOR

Enter the number of outcomes: 1
Enter the number of total outcomes: 6

The probability is: 1 / 6
The probability in decimals is : 0.16666666666666666
The probability in percentage is : 16.666666666666664 %

Feel free to ask any query related to python programming in comment and suggest me other programs that i can make in python.

#trycoding #coding #phython #programmer #code #learnpython #trending #yt #shorts #ytshorts #python #tutorial #pythonic #trending #code #pythonlanguage #yt #trending #trycoding #yt #coding #phython #code #learnpython
Рекомендации по теме
welcome to shbcf.ru