Saved Bookmarks
| 1. |
Write a python program using simple variable creation and python? |
|
Answer» Answer: A Python variable's name is a key in the GLOBAL (or local) namespace, which is EFFECTIVELY a dictionary. The UNDERLYING value is some object in memory. Assignment gives a name to that object. Assignment of one variable to another variable means both variables are names for the same object Explanation: please MARK me Brailient |
|