import typingtype(typing.cast(int, '11'))still returns <class 'str'> instead of int. Then, what does typing.cast do here?
import typingtype(typing.cast(int, '11'))still returns <class 'str'> instead of int. Then, what does typing.cast do here?