Answers for "how to convert number in string in python"

0

how to get a number from a string in python

string = "I am 14 years old"
for i in string.split():
  if i.isdigit():
    print(i)
print()
Posted by: Guest on February-11-2021
0

python int to string

num = 12

print(f"Bob has {num} apples.")

#prints: Bob has 12 apples.
Posted by: Guest on February-02-2021

Code answers related to "how to convert number in string in python"

Python Answers by Framework

Browse Popular Code Answers by Language