print('{:>85} '.format("PASS"))
This is working fine, I want to read that 85 from a variable
indent = 85
print('{:>indent} '.format("PASS"))
print('{:>85} '.format("PASS"))
This is working fine, I want to read that 85 from a variable
indent = 85
print('{:>indent} '.format("PASS"))