Skip to content

Instantly share code, notes, and snippets.

@frozenyeti789
Created July 20, 2016 07:57
Show Gist options
  • Save frozenyeti789/040f0fa016f1d9755866f4ca1f8ba701 to your computer and use it in GitHub Desktop.
Save frozenyeti789/040f0fa016f1d9755866f4ca1f8ba701 to your computer and use it in GitHub Desktop.
word = "dnfkjejevfvkvv/hkfhukf/"
print(word.find("/"))
print(word.split("/"))
word2 = "blalalsdjsfff.,fhef.,hfgeufy"
print(word2.find(".,"))
print(word2.split(".,"))
def prog():
a = input(r'Enter whatever:')
print(a)
prog()
def prog2():
a = input(r'Enter stuff:')
print(a.find(""))
prog2()
a = input("Enter a word: ")
print(a.count(""))
@frozenyeti789
Copy link
Author

Lesson 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment