"""Simple Python module for testing basic parsing."""defgreet(name:str)->str:"""Greet someone by name."""returnf"Hello, {name}!"classPerson:"""A simple person class."""def__init__(self,name:str,age:int):self.name=nameself.age=agedefintroduce(self)->str:"""Return introduction string."""returnf"My name is {self.name} and I am {self.age} years old."