printing dynamically string in one line in python
问题 I'm trying to print strings in one line. I've found solutions but they don't works with windows correctly. I have text file contains names and I want to print them like this name=john then change john to next name and keep name= , I've made this code but didn't work correctly with windows: op = open('names.txt','r') print 'name=', for i in op.readlines(): print '\r'+i.strip('\n') thank you for your time 回答1: Using '\b' as suggested by senderle import sys import time sys.stdout.write('name=')