В Python просто используйте простой синтаксис x = int (String), например:
num = '10'
# check and print type num variable
print(type(num))
# convert the num into string
converted_num = int(num)
# print type of converted_num
print(type(converted_num))
# We can check by doing some mathematical operations
print(converted_num + 20)
result:
<class 'str'>
<class 'int'>
30
, чтобы преобразовать вашу строку в целое число. Так что давайте поместим int (YourStringNeededToConvert) , чтобы преобразовать его в целое число.