I'm looking for a solution for this, searched and tried several ones, but none working with int datatypes, using python 3.8.5.
begin = 1
end = 273
print ("lines:", begin, "-", end)
result:
lines: 1 - 273
needed:
lines: 1-273
What do I need to do to remove the blank spaces using string and integer variables?
Thx