This is the code and notes from my live Twitch programming and drawing classes.
 
 
streaming-school/python/code/module-3/ex44_2.py

11 lines
210 B

def talk(who, words):
print(f"I am {who['name']} and {words}")
becky = {
"name": "Becky",
"age": 34,
"eyes": "green",
"talk": talk # see this?
}
becky['talk'](becky, "I am talking here!")