Can't figure out how to left justify my outputs? any advice on what should be done here ? "Written in Python"

if count1>count2:
print("Second integer can't be less than the first.",end='')

while count1<=count2:
print(count1, end=' ')
count1 = count1 + 10

Solved
Show answers

Ask an AI advisor a question