# Author: James Tam # Version: November, 2013 # Learning concepts: using the len() function and string # methods: upper(), split() in a practical example. normal = "Normal talk includes: 1) capitals 2) lower case 3) other characters" shouting = normal.upper() print("This is how a regular person speaks") print(normal + "\n") print("This angry") print(shouting + "\n") lyrics = "I'm a lumberjack and I'm okay!" w1,w2,w3,w4, w5,w6 = lyrics.split() print(len(w2))