我的第一个python程序


#!/usr/bin/python

import random

str = 'cca9cc444e64c8116a30la00559c042b4'

for i in range(33):

    str1 = str[0:i] + str[i+1:33]

    print str1


你可能感兴趣的:(python,程序)