以相反顺序和新行打印列表中的元素

时间:2018-01-12 21:16:22

标签: list newline

我想以相反的顺序打印此列表中的所有元素,此列表中的每个元素都必须在新行上。 例如,如果列表是['我','编程',''' python&#39 ;]它应该打印出来: 蟒蛇 同 程序设计 上午 一世 这样做的最佳方式是什么?

def list():
    words = []
    while True:
        output = input("Type a word: ")
        if output == "stop":
            break
        else:
            words.append(output)
    for elements in words:
        print(elements)
list()

1 个答案:

答案 0 :(得分:0)

通用:

Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404 The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporally unavailable...
Requested URL: /xxxx
  • 从列表末尾开始迭代 - 其中的最后一个元素。
  • 然后向后迭代 - 将迭代器减1,直到达到0。
  • 打印每个元素加上新的行符号 - 可能取决于操作系统, 语言。