Kevin Tiller

Generation

generate functionSat, 22 Apr 2023

Assign a new name show_student(name, age) to it and call it using the new name. Given: def display_student(name, age): print(name, age) display_student("Emma", 26) You should be able to call the same function using show_student(name, age)

def display_student(name, age): print(name, age) def show_student(name, age): display_student(name, age) show_student("Emma", 26)

Want to kickstart your project?Use the new AI Studio to create your code