Python 模块变量
模块中的变量
模块可以包含函数,如前所述,还可以包含所有类型的变量(数组、字典、对象等)。
示例
将此代码保存在名为 mymodule.py
的文件中。
person1 = {
"name": "John",
"age": 36,
"country": "Norway"
}
模块可以包含函数,如前所述,还可以包含所有类型的变量(数组、字典、对象等)。
将此代码保存在名为 mymodule.py
的文件中。
person1 = {
"name": "John",
"age": 36,
"country": "Norway"
}
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]