- favorite_songs = {
- 'Серёга': ['Unforgiven', 'Holiday', 'Highway to hell'],
- 'Соня': ['Shake it out', 'The Show Must Go On', 'Наше лето'],
- 'Дима': ['Владимирский централ', 'Мурка', 'Третье сентября']
- }
- # Ниже напишите код, который напечатает на экран, сколько у Димы любимых песен
- print('Количество любимых песен Димы ', len(favorite_songs['Дима']))
- # Ниже напишите код, который построчно напечатает
- # все любимые песни Сони.
- for song in favorite_songs:
- print(favorite_songs['Соня'])
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
— Expand Paste to full width of browser