Python Basics\n\nML requires knowledge of lists, dictionaries, loops, and functions. Python's readability makes it the #1 language for AI.\n\nExample:\npython\ndata = [1, 2, 3, 4, 5]\nmean = sum(data) / len(data)\nprint(f'Mean: {mean}')\n