Skip to content

Commit

Permalink
Creating greeting page
Browse files Browse the repository at this point in the history
  • Loading branch information
AliHusseinAlmoussawi committed Nov 24, 2023
0 parents commit 12c0c94
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .idea/Midterm-Project.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#Greeting the user and displaying options
def mainPage():
print("Hello, choose an option:")
print("1. Open Tab")
print("2. Close Tab")
print("3. Switch Tab")
print("4. Display All Tabs")
print("5. Open Nested Tab")
print("6. Sort All Tabs")
print("7. Save Tabs")
print("8. Import Tabs")
print("9. Exit")


if __name__ == '__main__':
mainPage()


0 comments on commit 12c0c94

Please sign in to comment.