Posts by Adriano Gomes • 1 point
2 posts
-
0
votes1
answer45
viewsA: Display other output before input
Whereas its PDF function is like that one, then it would be possible to merge the opening PDF HTML with an HTML input. For example: class PDF(object): def __init__(self, pdf, size=(200,200)):…
-
0
votes3
answers121
viewsA: Python - Spaces appear out of thin air when printing print()
If there are spaces around the names, you could use nome[i].strip() to remove them. I would also recommend using the format instead of concatenating the values with +, this way you will have a…