nevermind
Change print "Nice to meet you:", first_initial, second_initial, the_initials[2].title() to return first_initial + " " + second_initial +...
Theres a built in method called Title that will capitalize the last name properly. just do the_initials[2].title() or whatever your last name...
Strings are like arrays of characters in most languages and you can access characters like an array. To get the first character do...
Heres an example http://mikehershey.com/pastie/view.php?id=qn48LXhph57a70YMg6Sb
I have a runescape bot. Mine however is a reflection bot (unlike powerbot), its kinda the furthest developed of any reflection bot I've ever seen,...
Java is good for Runescape bots or games that use java. Java would be a terrible language to make a bot for a game like WOW that uses native...
Heres an example: http://mikehershey.com/pastie/view.php?id=7nOEnIw19i7Rrgpqfuvh
EDIT: -Use main function to control the calling of other functions, passing of parameters to the other functions and the storing of values...
http://mikehershey.com/pastie/view.php?id=0CSZ328UEvRSAcscexW7 meets the requirements but still is ugly code :p
Use CURL to get the HTML source, parse it using regex/grammars to find what u want. Heres an example from my gedownloader: How i get html source:...