The answer for Conditional Statements - Excercise 1 is

var = input()
print('The length of the string is '+ str(len(var))+' and the letters are')
for i in var:
if i != ' ':
print(i)