Заголовок: Исправление кода на Python для вывода значений переменных
firstSimbols = 1
twoSimbols = 1
threeSimbols = 1
fourSimbols = 1
simvols = 'a b c d e f g h i j k l m n o p q r s t u v w x y z'.split()
def firstNumberdef():
global firstSimbols
firstNumber = random.randint(0, 25)
firstSimbols = simvols[firstNumber]
def twoNumberdef(): global twoSimbols twoNumber = random.randint(0, 25) twoSimbols = simvols[twoNumber]
def threeNumberdef(): global threeSimbols threeNumber = random.randint(0, 25) threeSimbols = simvols[threeNumber]
def fourNumberdef(): global fourSimbols fourNumber = random.randint(0, 25) fourSimbols = simvols[fourNumber]
4. Вызов алгоритмов:
```python
firstNumberdef()
twoNumberdef()
threeNumberdef()
fourNumberdef()
print(firstSimbols)
print(twoSimbols)
print(threeSimbols)
print(fourSimbols)
Теперь код должен корректно выбирать случайные символы из списка и выводить их значения в консоль.