import re

def printLatLng(line):
	match = re.search('YOUR_RE_HERE', line)
	if match:
		# print the appropriate latitude/longintude
		print('lat is ' + match.group(1) + ', lng is ' + match.group(2))


# main program
tweetFile = open('term.csv', 'r')
contents = tweetFile.read()
tweetFile.close()

lines = contents.split('\n')
for line in lines:
	printLatLng(line)
