Question: In Python, you don't need to declare a data type for each variable. Python automatically infers the data type of a variable based on its
In Python, you don't need to declare a data type for each variable. Python automatically infers the data type of a variable based on its value at the right-hand side. For each statement, you don't need to end it with a semi-column unless there are multiple statements in a single line. Write down the following statements: a = False b= 5.1 c= 10 d= 'Alex' e= "3.14' Use type() function to show the inferred data type for the above five variables: a through e. For example, >>> x= 10 >>> type(x)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
