- 1
why is the python learn about math
its like that one spiderman scene âeverywhere i go i see itâ why is it mathh
1 Answer
0
Suprise! You have found what lies behind of the mask! The concept of programming is cute seeing at the distant, but when you get closer isn't nothing more than math hiding behind a mask.
Now without joking, in the world of computers you need to know a lot of math, algorithms, concepts, data structures, calculus ... I like to give an simple example: If I told someone the value of 1+2+3+...+100000 they would probably do the sum (obviously) and they would answer within some days. Now, if you knew that the sum of 1+2+...+n = (n*(n+1))/2 you could do it so much faster. Now imagine this program, if you had to compute the sum of n numbers and each sum would take 1 ms, the program would take n ms, but using the formula it would do it in 1 ms. This is the magic and the strength of math.