python如何进行字符串倒序输出

str='0123456789'
x=str[::-2]
print(x)

python可以用切片的方法进行倒序输出,非常的方便快捷

    原文作者:smarthome_man
    原文地址: https://blog.csdn.net/smarthome_man/article/details/122097224
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞