Python — замена строчных букв
#python #string #replace #lowercase #python #строка #заменить #нижний регистр Вопрос: >>> import string >>> word = "hello." >>> word2 = word.replace(string.lowercase, '.') >>> print word2 hello. Я просто хочу, чтобы…
#python #string #replace #lowercase #python #строка #заменить #нижний регистр Вопрос: >>> import string >>> word = "hello." >>> word2 = word.replace(string.lowercase, '.') >>> print word2 hello. Я просто хочу, чтобы…