Re: Re: Тема 5. Урок 7. Задание 1

From Нунэ, 1 Year ago, written in Plain Text, viewed 429 times. This paste is a reply to Re: Тема 5. Урок 7. Задание 1 from Нунэ - view diff
URL http://codebin.org/view/b1f87bde Embed
Download Paste or View Raw
  1. sales = [
  2.     ['Московская область', 105820, 112180],
  3.     ['Ленинградская область', 85899, 91021],
  4.     ['Самарская область', 35010, 32001],
  5.     ['Ростовская область', 37011, 39595]
  6. ]
  7.  
  8. for sales in sales:
  9.     summa = (sales[1] + sales[2])
  10.     sales.append(summa)
  11.     print(sales)

Replies to Re: Re: Тема 5. Урок 7. Задание 1 rss

Title Name Language When
Re: Re: Re: Тема 5. Урок 7. Задание 1 Round Gorilla text 1 Year ago.

Reply to "Re: Re: Тема 5. Урок 7. Задание 1"

Here you can reply to the paste above