Python Variables & Data Types What will be the output of the following code? a = 10.5 print(type(a)) class ‘int’ class ‘bool’ class ‘float’ class ‘str’ Variable names in Python are always case-sensitive: False True Which of the following is the correct way to declare a variable in Python? x := 10 int x = 10 x = 10 variable x = 10 What will be the output of the following code? x = 5 print(type(x)) class ‘str class ‘int’ class ‘bool’ class ‘float’ What data type will the variable x have after the following code runs? x = 10 + 5.5 complex float str int Can you declare a variable in Python without assigning any value? Yes No What will be the output of the following code? x = “10” y = 5 print(x + y) 10 5 Error 105 15 Python has no command for declaring a variable. A variable is created the moment you first assign a value to it: False True Which data type is used to store a sequence of characters in Python? int float bool str Which of the following is a mutable data type in Python? int tuple str list Loading …