lol?hobbist wrote:Gawd, I love python. Can't wait until I really start learning.Code: Select all
x = str(((17**39)**11)) x2 = '' for i in range(0,len(x),33): x2 += x[i] print 'powers that be ', x2
print str((17**39)**11)[::33]
lol?hobbist wrote:Gawd, I love python. Can't wait until I really start learning.Code: Select all
x = str(((17**39)**11)) x2 = '' for i in range(0,len(x),33): x2 += x[i] print 'powers that be ', x2