How does a python code works?
Answers
Answered by
0
Python is a dynamic, interpreted (bytecode-compiled) language.Python tracks the types of all values at runtime and flags code that does not make sense as it runs. An excellent way to see how Python code works is to run the Python interpreter and type code right into it.
- mark as brain list
- follow for more answers
- and please do like also❤❤❤❤❤
Answered by
1
Answer:
python is a dynamic, interpreted language
Explanation:
this makes the code short and flexible,and you lose the compile-time type checking of the source code
Similar questions