the more I study it, the more I like it, the hate for it largely comes from people who have never programmed in Asm or C/C++ and largely do not understand pointers and memory management.
>>671
because python is not type safe and it's slow.
>how much slow?
python is 44x slower than compiled language like golang for a simple while loop
>python
[code]
i = 0
while True:
if i == 100000000:
print("done")
break
i += 1
[/code]
>go
[code]
package main
import "fmt"
func main() {
i := 0
for {
if i == 100000000 {
fmt.Println("done")
break
}
i += 1
}
}
[/code]
although this is a very simple comparison but I think you get the idea
I personally think learning C/C++, Asm and Rust increases your knowledge about how computers and operating systems actually work, most of this stuff isn't taught that well