forked from shannonturner/python-lessons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_count.py
27 lines (22 loc) · 2.08 KB
/
string_count.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# String methods: string.count()
# string.count() tells you how many times one string appears in a larger string
gettysburg_address = """
Four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty, and dedicated to the proposition that all men are created equal.
Now we are engaged in a great civil war, testing whether that nation, or any nation so conceived and so dedicated, can long endure.
We are met on a great battlefield of that war.
We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live.
It is altogether fitting and proper that we should do this.
But, in a larger sense, we can not dedicate, we can not consecrate, we can not hallow this ground.
The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract.
The world will little note, nor long remember what we say here, but it can never forget what they did here.
It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced.
It is rather for us to be here dedicated to the great task remaining before us -- that from these honored dead we take increased devotion to that cause
for which they gave the last full measure of devotion -- that we here highly resolve that these dead shall not have died in vain -- that this nation, under God,
shall have a new birth of freedom -- and that government of the people, by the people, for the people, shall not perish from the earth.
"""
# Now that we have a fairly long string to search through, let's see how many times the word "people" appears in the text
print gettysburg_address.count("people") # appears 3 times
# What goes inside the parentheses is the string that you're looking for; the larger string to look inside is the string that comes before the dot.
print gettysburg_address.count("here, ") # appears 2 times
print gettysburg_address.count("e") # appears 165 times
print gettysburg_address.count("!!!!!!") # doesn't appear at all