Код: Выделить всё
x = 123
y = str(x)
Код: Выделить всё
from typing import cast
x = 123
y = cast(str, x)
Подробнее здесь: https://stackoverflow.com/questions/750 ... in-casting
Код: Выделить всё
x = 123
y = str(x)
Код: Выделить всё
from typing import cast
x = 123
y = cast(str, x)