Wednesday, February 13, 2019

Python Data Types

Python provides some built-in data types as listed below


  • Numbers: Numerical values
  • String: Sequence of Unicode characters
  • Boolean: “Truthiness” || True or False
  • List: Ordered sequence of items
  • Tuple: Same as List, but they are immutable
  • Dictionary: Unordered collection of key-value pairs
  • Set: Unordered collection of unique items

No comments:

Post a Comment