Created
July 20, 2016 07:57
-
-
Save frozenyeti789/040f0fa016f1d9755866f4ca1f8ba701 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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("")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Lesson 2