python AOJ_ITP1_6_A:反转数字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python AOJ_ITP1_6_A:反转数字相关的知识,希望对你有一定的参考价值。

N=int(input())
b=[]
n=list(map(int,input().split()))
for i in range(N):
    b.insert(0,n[i])

print(*b,sep=" ")

以上是关于python AOJ_ITP1_6_A:反转数字的主要内容,如果未能解决你的问题,请参考以下文章

python AOJ_ITP1_6_B查找丢失的卡片

在python中反转链接列表

Python 一日一练: 01

剑指offer python版 反转链表

python---反转链表

1.5编程基础之循环控制_29:数字反转