I have to output a collection of strings and integer values such that there is one string followed by an integer in one line. the problem i am having is to arrange it properly on the display
Example:
I am trying to print: or rather what i am able to print is
zmike russel 23
stephanie davidson 45
timmy 19
Now I trying to make it display:
mike russel 23
stephanie davidson 45
timmy 19
i.e the names should be in one column and the digits in one column. I am finding it hard to realise this using the print statement. The numbers just don't come exactly below one another ......
Please help ....:?: