I would like to add space after I write text and my variable in Python Format String. So I want to align and add 50 spaces such as the below picture.
I wrote this code but it does not work
print("{:<50s}{}".format("Enter the point ID of unknown point ",i,)," :",end=" ")
