I have wrote python code where I am displaying a line on output screen.
#!/pro/mobile/Linux/bin/python
print '\033[1m \033[91m \033[4m' + "SELECTED OPTION IS FOR INSERTING\n" + '\033[0m'
print "Please enter valid input\n"
Here I have used '\033[1m \033[91m \033[4m' for making the line bold, change the color of line to red and underline. These are all ok and it works fine.
But here i am unable to increase the font size of the line. I have to increase the of first line which will get displayed on same terminal, second line will be displayed in default font size of the terminal. Please help me to increase the font size of the line.