
;D
By: a guest on
Jul 29th, 2012 | syntax:
Python | size: 0.20 KB | hits: 23 | expires: Never
# Szoveg felcserelo program
txtOne,j = "Burgonya",0
txtTwo,i = txtOne,len(txtOne)
while( i > 0):
txtTwo[j] = txtOne[i]
j = j + 1
i = i - 1
print "txtOne:",txtOne
print "txtTwo:",txtTwo