Quotes help make search much faster. Example: "Practice Makes Perfect"
Saturday, December 8, 2012
LearnStreet Python Lesson 5 Exercise 7
#sample solution
def run():
"""
print each letter in the string using the for loop syntax and then return the last character sequence
"""
str = "LearnStreet!"
for char in str:
print char
return str[len(str)-1]
No comments:
Post a Comment