> For the complete documentation index, see [llms.txt](https://www.computersciencebasics.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.computersciencebasics.com/week-8/starter-code.md).

# Starter Code

## week8.py

```python
# Week 8 Code
myName = ""
session = "Sesson 8"
print(session + " " + myName)
```

## main function

```python
def main():
    done = False
    while not done:
        print("Menu")
        print("E1 - Example 1")
        # Display additional menu items
    
        print("Q - Quit")
        choice = input(":: ")
        if choice == "E1":
            print("Example 1")
    
            
        # Add additional elif choices
    
    
        elif choice == "Q":
            print("Quit")
            done = True
        else:
            print("Invalid Choice")
```
