View difference between Paste ID: cudkYgwn and G0YYqFvR
SHOW: | | - or go back to the newest paste.
1-
#!/usr/bin/python2
1+
2-
import sys
2+
3-
string = sys.argv[1]
3+
4
	print("You entered: " + str(string))
5
	print("There are " + str(numberOfSpaces) + " spaces in that string.")
6
	print("Also, " + str(numberOfLowerC) + " lowercase characters.")
7
8
manipulateString("My cool function does great things!!")