Pretty simple, you can call characters in strings by index. So The first character is index 0, the second is 1, and so on. So...
fullname = fname + " " + lname[0] + "."
or, a bit more pythonic:
fullname = "%s %s."%(fname, lname[0])
Python has some pretty good documentation. Read this to learn how to use strings in python: http://docs.python.org/library/string.html
----Edit----
It has come to my attention that using % notation is not a good idea in recent versions of Python. I'm guessing this is to help programmers avoid injection attacks. So, like other people have already said, it's best to use something like:
fullname = "{0} {1}.".format(fname, lname[0])
or
fullname = "{0} {1[0]}".format(fname, lname)
The Python documentation I provided earlier explains this too. Obviously, I can't take credit for the code in this edit.