Data Types :
Solution
2. String is a collection of characters enclosed within __________
Triple Quotes (''' ''') or (""" """)
Solution
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)