Converting between Strings and Integers in Python

preview_player
Показать описание
This video gives demonstrations on how to use the int() and str() built in functions in Python. It shows when they return errors as well.
Рекомендации по теме
Комментарии
Автор

a=int(input('enter a no'))
print (a)


It's giving an error...that invalid literal for int() with base 10: ' '

jyotikinkarsaharia