Computer Science, asked by sanskar179, 6 months ago

how python help you to solve your mathematical prodlem​

Answers

Answered by ankitjeti777
0

Answer:

First find a site with coding problems

I used the Euler project and Advent of Code (which despite its name can be done any tine of year).

The Euler project problems tend to be small maths based problems which do make you think about you can solve the problem as fast as possible - I can confirm that so far problems up level 49 are doable very quickly in pure python. You also find you quickly build a collection of reusable code - for instance I ended up with a library to find primes, prime factors and divisors of numbers all through solving those problems

The advent of code problems are more like mini projects each to solve a particular problem - each ‘day’ has two parts and the second part often involves extending the first part. There are also occasion where a problem will ‘call back’ to previous solution so encouraging code re-use.

It would be remiss of me to not mention Python Morsels -- Write better Python code; a subscription based online training (maximum $16 per month) where python challenges are sent every month) - these challenges are designed by Trey Hunner, a very well respected Python trainer, and aim to explore all aspects of Python, and how to write it well.

Similar questions