Why python is a dynamic language?
Answer / Ranjan Kumar Murmu
Python is a dynamically typed language because you don't have to declare the type of variables when you define them. The type is determined at runtime instead of compile time. This makes Python more flexible and easier to learn but can also lead to runtime errors if not handled properly.
| Is This Answer Correct ? | 0 Yes | 0 No |
Does python make use of access specifiers?
Explain about lambda in python?
How can I find the methods or attributes of an object?
How will you use python to read a random line from a file?
Write the command to get all keys from the dictionary.
How python manage memory?
Can I learn python without knowing html?
How you can access sessions in flask?
What is a from import statement and write the syntax for it?
How does xrange work in python?
Explain Python's data types.
Write a small code to explain repr() in python ?