“Python Dict Dot Notación” Código de respuesta

Python Dict Dot Notación

>>> from types import SimpleNamespace
>>> d = {'key1': 'value1', 'key2': 'value2'}
>>> n = SimpleNamespace(**d)
>>> print(n)
namespace(key1='value1', key2='value2')
>>> n.key2
'value2'
Sore Squirrel

Python Dict Dot Notación

>>> from types import SimpleNamespace
>>> d = {'key1': 'value1', 'key2': 'value2'}
>>> n = SimpleNamespace(**d)
>>> print(n)
namespace(key1='value1', key2='value2')
>>> n.key2
'value2'
Yucky Yak

Respuestas similares a “Python Dict Dot Notación”

Preguntas similares a “Python Dict Dot Notación”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código