by CodeChum Admin
Are you good at spelling things? Well, with Python and its loops, it's as easy as 1-2-3! Let's try spelling some random words!
Instructions:
- Make a variable assigned to an input() function to store an inputted string.
- Using a for loop, print out each character of the inputted string on separate lines, but all that is to be printed out must be in lowercase. Remember your lessons on how to transform strings into lowercase values!
Instructions
- Make a variable assigned to an input() function to store an inputted string.
- Using a for loop, print out each character of the inputted string on separate lines, but all that is to be printed out must be in lowercase. Remember your lessons on how to transform strings into lowercase values!
Input
A line containing a string.
CodeChum
Output
Multiple lines containing a one-letter lowercase string.
c
o
d
e
c
h
u
m
Comments
Leave a comment