diff --git a/Homework #1 b/Homework #1 new file mode 100644 index 0000000..aa13443 --- /dev/null +++ b/Homework #1 @@ -0,0 +1,15 @@ +#This is the first Home assignment for the 'Python is Easy' course + +#Below are the details of my favorite song + +Song = "Song Name: Thinking Out Loud" +Artist = "Artist: Ed Sheeran" +Released = "Released: 2014" +Genre = "Genre: Pop" +Duration = "Duration: 297 seconds" + +print(Song) +print(Artist) +print(Released) +print(Genre) +print (Duration)