X Tutup
#!/usr/bin/env python # coding=utf-8 raw = [1,2,3,4,5,6,7,8,9,0] print raw b = raw.pop(0) raw.append(b) print raw
X Tutup