Introduction & Python
Overview of AI course, expectations, and a short Python refresher. Example: write a small script that reads input and prints a processed result.
s = input("Text: ")
print(s.lower())
Practice: explore Python lists and dictionaries, and try simple string processing tasks.