Created
August 9, 2011 18:07
-
-
Save DAP-DarkneSS/1134748 to your computer and use it in GitHub Desktop.
This program reflects the input text as in a mirror.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
#Указывается язык и кодировка. | |
#This code is released under | |
#GNU LESSER GENERAL PUBLIC LICENSE | |
#http://www.gnu.org/copyleft/lesser.html | |
print 'Программа создания зеркального отображения текста' | |
print '-----------' | |
intext = unicode(raw_input("Введите строку: "), "utf-8") | |
print '-----------' | |
#Приветствие, ввод Unicode-строки. | |
#Unicode даёт возможность работать с нелатиницей. | |
outtext = '' | |
#Создание пустой строки для вывода. | |
#Необходимо, чтобы дальше не получить ошибку, если в строке будут цифры. | |
for i in xrange(0, (len(intext))): | |
outtext += intext[-i-1] | |
#Заполнение сроки для вывода символами введённой строки, начиная с конца. | |
print(outtext) | |
#Вывод зеркальной строки. | |
raw_input("Нахмите Enter для завершения программы...") | |
#Программа ожидает ввода. Можно скопировать текст. | |
#Необходимо, если программа запускается не в эмуляторе терминала. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment