python data code example
Example 1: python data object
from dataclasses import dataclass
@dataclass
class InventoryItem:
"""Class for keeping track of an item in inventory."""
name: str
unit_price: float
quantity_on_hand: int = 0
def total_cost(self) -> float:
return self.unit_price * self.quantity_on_hand
Example 2: python data types
string = 'ASCII text'
integer = 1234567890
floatnum = 123.456
numlist = [1,2,3,4,5]
dictionary = {'key','value'}
Example 3: python data types
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