Guest User

Untitled

a guest
Jul 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. list1=[]
  2. list2=[]
  3. for c in "iterable":
  4. list1.append(c)
  5. while len(list1)>0:
  6. j=-1#これと
  7. d=list1.pop(j)
  8. j+=1#これは別にいらない。
  9. list2.append(d)
  10. print(list2)
Add Comment
Please, Sign In to add comment