diff options
| author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-08-16 12:28:54 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-16 12:28:54 +0200 | 
| commit | 415d8e62f905683242e2c629f35f5bd8f0909832 (patch) | |
| tree | c85343f874707056641709f6710f6034c3982398 | |
| parent | bc059485314ec25704bd30528f7e618d632dc608 (diff) | |
| parent | fd851cbac2ba22f148962cb7db091d753a655e57 (diff) | |
Merge pull request #3996 from CH1979/fix_error_in_output_description
[python/ru] Fix error in output description
| -rw-r--r-- | ru-ru/python-ru.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ru-ru/python-ru.html.markdown b/ru-ru/python-ru.html.markdown index b2c00baf..9133549d 100644 --- a/ru-ru/python-ru.html.markdown +++ b/ru-ru/python-ru.html.markdown @@ -380,7 +380,7 @@ else:   # Необязательное выражение. Должно след  # Объект, который возвратила функция range(), итерируемый.  filled_dict = {"one": 1, "two": 2, "three": 3}  our_iterable = filled_dict.keys() -print(our_iterable) #=> range(1,10). Это объект, реализующий интерфейс iterable +print(our_iterable) #=> dict_keys(['one', 'two', 'three']). Это объект, реализующий интерфейс iterable  # Мы можем проходить по нему циклом.  for i in our_iterable:  | 
