Answers for "string tro number python"

1

convert string to number python

>>> x = "23"
>>> y = "20"
>>> z = int(x) - int(y)
>>> z
3
Posted by: Guest on March-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language