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