Найти - Пользователи
Полная версия: Можно ли создать переменную ...
Начало » Python для новичков » Можно ли создать переменную ...
1
lightmanLP
У нас есть переменная с каким то значением. Можно ли превратить это значение в имя другой переменной?
JOHN_16
да.
  python3
Python 3.6.6 (default, Sep 12 2018, 18:26:19) 
[GCC 8.0.1 20180414 (experimental) [trunk revision 259383]] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 
>>> a = 'b'
>>> globals()[a] = 'B'
>>> b
'B'
>>> 
lightmanLP
JOHN_16
да.
Спасибо
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB