Kevin Tiller

Generation

generate functionSat, 22 Apr 2023

Write a program to create a function called show_employee() . It should accept the employee’s name and salary as user input and display both. Use Ben 12000 as your test data

def show_employee(name, salary): print("name: " + name + " salary: $" + str(salary)) show_employee("Ben", 12000)

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