Python – Variables, Values, Types & Keywords.

variables

Variables, Values, Types & Keywords in python Values A value can be a number, letter, word etc. It can be of any data type like int, string, float etc. eg: 100,20.20,”itvoyagers” >>> a=”itvoyagers” >>> a ‘itvoyagers’ >>> b=5 >>> b 5 >>> c=50.5 >>> c 50.5 >>> NOTE : In Python it is not necessary … Read more