Title: def getCommunityID(steamID): # now working, thanks to the miracle of the split() Author: gando Pastebin link: http://pastebin.com/P9wbdksd First Edit: Saturday 26th of May 2012 05:57:25 PM CDT Last Edit: Saturday 26th of May 2012 05:57:25 PM CDT def getCommunityID(steamID): # now working, thanks to the miracle of the split() method     tempString = steamID.split('_')[1]     X = long(tempString.split(':')[0])     Y = long(tempString.split(':')[1])     Z = long(tempString.split(':')[2])     SteamCommunityID = (Z*2) + 76561197960265728 + Y     return SteamCommunityID