This is the code and notes from my live Twitch programming and drawing classes.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

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!")