bueno el metodo get de la clase Text solo te regresa un string, para obtener las propiedades puedes usar lo siguiente:
Código python:
Ver originalfrom Tkinter import *
win=Tk()
def fuenteroja():
c.tag_config ("a",foreground="red")
c.insert(INSERT,(c.get(SEL_FIRST,SEL_LAST)),"a")
c.delete(SEL_FIRST,SEL_LAST)
def geHTML():
print c.get(0.0,END)
if "a" in c.tag_names():
print c.tag_cget("a", "foreground")
a=Button(win,text="Cambiar la fuente a color rojo",command=fuenteroja)
b=Button(win,text="Generar el codigo HTML",command=geHTML)
c=Text()
a.pack()
b.pack()
c.pack()
win.mainloop()