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