You can simplify it and just use one while loop:
def printTTriangle(height):
row = 1
while row <= height:
print 'T '*row
row += 1
AND if you are not obsessed with while loops, here is a one liner:
def printTTriangle(height):
print "\n".join(['T '*row for row in range(1, height+1)])