Write a complete python program which allows a user to input a string of up to 1
ID: 3697132 • Letter: W
Question
Write a complete python program which allows a user to input a string of up to 15 lower case letters. The program then prints one line of brattle characters which match the string. It must print them all on one line. For example an input of python would output:Explanation / Answer
>>> print s >>> s 'Километр' >>> s.decode('utf-8') u'u041au0438u043bu043eu043cu0435u0442u0440' >>> s.decode('utf-8').lower() u'u043au0438u043bu043eu043cu0435u0442u0440' >>> s.decode('utf-8').lower().encode('utf-8') 'километр' >>> print s.decode('utf-8').lower().encode('utf-8')
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.