Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. import MySQLdb
  2.  
  3. def HomePage():
  4. print("Welcome To Musicly\n1. Playlists 2. Artists 3. Albums 4. Library")
  5.  
  6. choice = int(input())
  7.  
  8. if choice == 1:
  9. ShowAllPlaylists();
  10.  
  11. elif choice == 2:
  12. ShowAllArtists()
  13.  
  14. elif choice == 3:
  15. ShowAllAlbums()
  16.  
  17. elif choice == 4:
  18. ShowAllSongs()
  19.  
  20.  
  21. def ShowAllPlaylists():
  22. print("!")
  23.  
  24.  
  25. def ShowPlaylist():
  26. print("!")
  27.  
  28.  
  29. def ShowAllArtists():
  30. print("!")
  31.  
  32.  
  33. def ShowArtist():
  34. print("!")
  35.  
  36.  
  37. def ShowAllAlbums():
  38. print("!")
  39.  
  40. def ShowAlbum():
  41. print("!")
  42.  
  43. def AlbumsofArtist():
  44. print("!")
  45.  
  46. def ShowAllSongs():
  47. print("!")
  48.  
  49. def ShowSong():
  50. print("!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement