Python Assignments

Data Types :

  1. Find Data Type of 34.57 .

Solution

type(34.57)

2. String is a collection of characters enclosed within __________

  • Single Quotes (' ')

  • Double Quotes (" ")

  • Triple Quotes (''' ''') or (""" """)

  • Any of the above

Solution

Any of the above

3. What is the right Order of Data Types of Values ?

3

'python'

'@#$'

'3.5'

7.4

'True'

False

Solution

Integer (int)

String (str)

String (str)

String (str)

float (float)

String (str)

boolean (bool)

Last updated