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