in str.join() Generator Expressions in str.join() Generator Expressions in str.join() Generator Expressions in str.join() Python 2.3 Python 2.3 Python 2.3 Python 2.3 Python 2.3 Python 2.3 ",".join([str(i) for i in range(10)]) Python 2.4 + Python 2.4 + Python 2.4 + Python 2.4 + Python 2.4 + Python 2.4 + ",".join(str(i) for i in range(10)) Output Output Output Output Output Output '0,1,2,3,4,5,6,7,8,9' '0,1,2,3,4,5,6,7,8,9' '0,1,2,3,4,5,6,7,8,9' '0,1,2,3,4,5,6,7,8,9' '0,1,2,3,4,5,6,7,8,9' '0,1,2,3,4,5,6,7,8,9' 29 / 45