Practicing Statistics Interview Questions in Python
Conor Dewey
Data Scientist, Squarespace
both = 0.25 * 0.40
print(both)
coding = (0.25 * 0.40) + (0.75 * 0.20)
print(coding)
0.1
0.25
stats_given_coding = both / coding
print(stats_given_coding)
0.4
Practicing Statistics Interview Questions in Python