def print_menu():
时间: 2023-12-14 16:03:08 浏览: 83
macro_menu_opt
Sure, here's an example implementation of the `print_menu()` function:
```
def print_menu():
print("Menu:")
print("1. Option 1")
print("2. Option 2")
print("3. Option 3")
print("4. Exit")
```
This function simply prints out a menu with four options: "Option 1", "Option 2", "Option 3", and "Exit". You can customize the options and messages as per your requirements.
阅读全文