Programming Pandit

c/c++/c#/Javav/Python


Latest Update

Sunday, September 13, 2020

Python Program to display type conversion function by G Krishna Chauhan

 Source Code


>>> a='8'

>>> type(a)

<class 'str'>

>>> a=int(a)

>>> type(a)

<class 'int'>





No comments:

Post a Comment