Advertisement
kingston17

Untitled

Jan 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1.  
  2. ### Description of Buffalo Soldier
  3.  
  4. Artist = "Bob Marley " ### Name of Artist
  5.  
  6. song_name = "Buffalo Soldier" ## Song name
  7.  
  8. Album = "confrontation" ### Album of the song
  9.  
  10. Genre = "Reggage" ## Genre of the song
  11.  
  12. Country_of_origin = "Jamaica" ## Country of origin of the song
  13.  
  14. Decimal = "duration" ## Duration of the song
  15. Duration = "416"
  16.  
  17. ##print(Artist) ## function to print out the Artist of th song
  18.  
  19. print(Artist) ## function to print out the song name
  20. print (Duration) ## function to print out the duration of the song
  21. print(Album) ## function to print out the Album of the song
  22.  
  23. print(Genre) ## function to print out the Genre of th song
  24.  
  25. print(Country_of_origin)## function to print out the country of origin of the song
  26.  
  27. ##print(Year_released ) ## function to print out the year released of the song
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement