s = "STELLA"

t = "Hello\nWorld"

for i in range(len(t)):
    print(i, t[i])
    
text = "Wow!! This is so exciting!"

result = ""
for i in range(len(text)):
    if text[i] != " ":
        result  = result + text[i]
print(result)

def getPunctuationFrequency(text, punc):
    count = 0
    for i in range(len(text)):
        if text[i] == punc:
            count = count + 1
    return count / len(text)


frankenstein = """Replace this string with the text from Project Gutenberg!
Full text elided here to keep file size manageable :)
"""