>>> import re
>>> string1 = "498results should get"
>>> int(re.search(r'd+', string1).group())
498
# Use the function str() to turn an integer into a string
integer = 123
string = str(integer)
string
# Output:
# '123'
string = "I am 14 years old"
for i in string.split():
if i.isdigit():
print(i)
print()
num = 12
print(f"Bob has {num} apples.")
#prints: Bob has 12 apples.
import re
s = "12 hello 52 19 some random 15 number"
# Extract numbers and cast them to int
list_of_nums = map(int, re.findall('d+', s))
print list_of_nums
number = 12
string_number = str(number)
print(str(1)) # convert number to string
print(int("1")) # convert string to int
print(float(1)) # convert int to float
print(list('hello')) # convert string to list
print(tuple('hello')) # convert string to tuple
print(list((1, 2, 3))) # convert tuple to list
print(tuple([1, 2, 3])) # convert list to tuple
print(bool(1)) # convert a number to boolean
print(bool(0)) # convert a number to boolean
print(bool("")) # convert a string to boolean
print(bool("data")) # convert string to boolean
print(bin(10)) # convert an integer to a binary string
print(hex(10)) # convert an integer to a hex string
print(oct(10)) # convert an integer to an octal string
>>> str(123)
'123'