Home Coding Data Types

Data Types

0
Data Types

# Data Types
# In programming, data type is an important concept.
# Variables can store data of different types, and different types can do different things.
# Python has the following data types built-in by default, in these categories:
# 
# Text Type: str
# Numeric Types: int, float, complex
# Sequence Types: list, tuple, range
# Mapping Type: dict
# Set Types: set, frozenset
# Boolean Type: bool
# Binary Types: bytes, bytearray, memoryview

str = "I'm a string!"
int = 123
list = ["item1", "item2", "item3"]
dic = {"k1" : "Value 1", "k2" : "Value 2"}
bool = True

OUT = (str, int, list, dic, bool)