基本形

while 条件式(真のとき継続): 処理

サンプル

index = len(list)-1
while index >= 0:
	print(list[index])
	index = index -1