Re: Untitled

From Sharp Bison, 4 Months ago, written in Plain Text, viewed 107 times. This paste is a reply to Untitled from Sole Rhinoceros - view diff
URL http://codebin.org/view/666dd5ca Embed
Download Paste or View Raw
  1. favorite_songs = {
  2.     'Серёга': ['Unforgiven', 'Holiday', 'Highway to hell'],
  3.     'Соня': ['Shake it out', 'The Show Must Go On', 'Наше лето'],
  4.     'Дима': ['Владимирский централ', 'Мурка', 'Третье сентября']
  5. }
  6. # Ниже напишите код, который напечатает на экран, сколько у Димы любимых песен
  7. print('Количество любимых песен Димы ', len(favorite_songs['Дима']))
  8.  
  9. # Ниже напишите код, который построчно напечатает
  10. # все любимые песни Сони.
  11. for song in favorite_songs:
  12.     print(favorite_songs['Соня'])
  13.  

Replies to Re: Untitled rss

Title Name Language When
Re: Re: Untitled Capacious Terrapin text 4 Months ago.

Reply to "Re: Untitled"

Here you can reply to the paste above