There are many different assembly languages. It is probably not worth learning any assembly language unless you are low level coding for an specific type of machine, such as a specific games console, and you need to write extremely efficient code that can take full advantage of the specific computer's instruction set and hardware features.
Try porting a Python program into C. For a processor intensive program, the C version can easily be 100 times faster than the Python version. For specific types of problem, assembler can produce perhaps 10 times faster processing than C.
In the early 1980s, I wanted to produce the answer to 1000! (1000 factorial). This was a long time before Python, but I used Basic, which like Python is an interpreted language. It took half an hour to write and debug the Basic program and 5.5 hours for it to run.
As an experiment it took nearly six hours to write and debug an assembler version, which ran in just a few minutes. In both cases, the total time was around 6 hours. This might seem slow, but in the early 1980s, an 8 bit 8085 CPU was quite fast at the time.
Unless you are developing code to be run many times, assembler probably won't help much. Also, unlike higher level languages such as C, assembler code tends not to be portable between different platforms.
I hope this helps.