Skip to content

Instantly share code, notes, and snippets.

@vovs03
Last active May 13, 2018 09:51
Show Gist options
  • Save vovs03/fb20d62cfb90fa52540f99c7bfb908bf to your computer and use it in GitHub Desktop.
Save vovs03/fb20d62cfb90fa52540f99c7bfb908bf to your computer and use it in GitHub Desktop.
A Byte of Python

A Byte of Python

Original https://github.com/swaroopch/byte-of-python

Rus translate http://wombat.org.ua/AByteOfPython/ (2.0.2)

Скачать PDF

  1. Что дальше?

7.4 Строки

7.4.6 Метод format

Иногда бывает нужно составить строку на основе каких-либо данных. Вот здесь-то и при- гождается метод format(). Сохраните следующие строки в файл str_format.py:

age = 26
name = 'Swaroop'
print('Возраст {0} -- {1} лет.'.format(name, age))
print('Почему {0} забавляется с этим Python?'.format(name))

19.13

Функциональное программирование

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment