Question : reportlab python

i m tryin to use space but it's not working ...

can anybody help me out why i can't use space in reportlab in python
Code Snippet:
1:
draw = Paragraph("Check:  (units to add)" + " + (rate) +  (Balance Left Over) = (Total Reinvest)" , rightJustifyBold)
Open in New Window Select All

Answer : reportlab python

It seems that you want to compose the paragraph from text fragments and some values, right? But your example could be simplified like the below and it contains plain string only.

draw = Paragraph("Check:  (units to add) + (rate) +     (Balance Left Over) =      (Total Reinvest)" , rightJustifyBold)
1:
draw = Paragraph("Check:  (units to add) + (rate) +     (Balance Left Over) =      (Total Reinvest)" , rightJustifyBold)
Open in New Window Select All
Random Solutions  
 
programming4us programming4us