Saturday, 2 January 2021

Some Most Useful functions in python for anyone who is getting started

For any language learner who is getting started, learning ways to unblock oneself becomes one of the most important part to keep self encouraging.

type of any variable

>>> st="Narendran"
>>> type(st)
<class 'str'>
>>> num = 123
>>> type(num
... )
<class 'int'>
>>>

help with type

help(str)

dir with any variable

dir(st)

No comments:

Post a Comment

Skill, Knowledge and Talent

I kept overwhelming with data, information, knowledge and wisdom over a period of time. And I really wanted to lean towards skilling on few ...