Pre-defined Function in python
We have already Learnt on the previous post that there is 14 Built in data types in python. Today's Agenda type() int() float() ord() complex() Now , If you have to make a variable x i.e.x=5 then On run -time,the interpreter decides its type after considering the content of that variable . we can also verify it by using a function called type() in IDLE. Note: IDLE is a short form of Integrated Development and learning Environment. Type Conversion: At first ,we understand that why do we type conversion in python by an example. let us consider that a variable x=6 ...