Fundamentals Before Learning Python

Fundamentals Before Learning Python

【1】Base Conversion1B=8bit1KB=2(10)B=1024B1MB=2(10)MB=1024MB=2(30)B1TB=2(10)GB=1024GB=2(40)B【2】Compiled Languages ● Compiled languages translate the entire source code into target code at once, generating an executable file. ● After modifying the source code, the entire program needs to be recompiled. Although the execution efficiency is high, the development efficiency is relatively low, and cross-platform compatibility is poor. Example: You are given an … Read more