1 / 8

Practice 1

Practice 1. Write a program that gets text from the user. Count the number of uppercase letters and print this out. Ex: “Hi There!” -> “2 uppercase letters”. Solution 1. text = raw_input ("Please enter some text: ") upper_count = 0 for i in range(0, len (text), 1):

anitra
Télécharger la présentation

Practice 1

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Practice 1 • Write a program that gets text from the user. Count the number of uppercase letters and print this out. • Ex: “Hi There!” -> “2 uppercase letters”

  2. Solution 1 text = raw_input("Please enter some text: ") upper_count = 0 for i in range(0, len(text), 1): if text[i].lower() != text[i]: # if text[i].upper() == text[i]: upper_count += 1 print "I found", upper_count, "upper case letters. "

  3. Solution 2 text = raw_input("Please enter some text: ") upper_count = 0 for letter in text: if letter >= 'A' and letter <= 'Z': upper_count += 1 print "I found", upper_count, "upper case letters. "

  4. Compare solution 1 & 2 for i in range(0, len(text), 1): if text[i].lower() != text[i]: upper_count += 1 for letter in text: if letter >= 'A' and letter <= 'Z': upper_count += 1

  5. Practice 2 • “The farm” book The Farm by Mary Fried Here is the pig. oink-oink Here is the cow. moo-moo Here is the horse. nee-nee Here is the farm. Diaosaurs by Nanet George I see two dinosaurs. I see four dinosaurs. I see six dinosaurs. I see eight dinosaurs. I see ten dinosaurs. A dinosaur family!

  6. Solution 1 (using ONE list) animals = (("pig", "oink-oink"), ("cow", "moo-moo"), ("horse", "nee-nee")) #animals = [["pig", "oink-oink"], ["cow", "moo-moo"], ["horse", "nee-nee"]] #using a nested sequence for animal in animals: print "Here is the", animal[0] + ". " + animal[1] + ". ” print "Here is the farm."

  7. Solution 2 (using TWO lists) print "The Fram by Mary Fried" animals = ("pig", "cow", "horse") sounds = ("oink-oink", "moo-moo", "nee-nee") for idx in range(len(animals)): print "Here is the " + animals[idx] + ". " + sounds[idx] + "." print "Here is the farm."

  8. What do you get? print "The Fram by Mary Fried" animals = ("pig", "cow", "horse") sounds = ("oink-oink", "moo-moo", "nee-nee") for animal in animals: for sound in sounds: print "Here is the " + animal + ". " + sound + "." print "Here is the farm."

More Related