|
I have used several warning messeges in my program. When the program is called it shows all warnings messeges in single line. How can I make it so that each warning messeges comes separately in each line. '\n' is not doing the job.
I want to take out the value of a parameter calculated within the program with the worning messege.
Suppose the program is following.
x='some expression';
warning('Program could not continue and the value of x is x= ?'). How to put it so that the current value of x, calculated from the expression comes with the worning.
|