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