python如何将一个四位数反向输出
作者:JSon?liu 时间:2023-03-21 16:42:40
将一个四位数反向输出
massage = '''
将一个四位数,反向输出
'''
N = input()
print(N[::-1])
# 输入:1245
# 输出 :5421
如何计算逆序的四位数
输入一个四位数,得到一个新的四位数。
新数的千位数字、百位数字、十位数字和个位数字分别是原数的个位数、十位数、百位数和千位数。
实现
#!/usr/bin/env python3
#-*- coding:utf-8 -*-
from functools import reduce
#---------------------
def returnReverseNumberString(ls):
ls.reverse()
return reduce(lambda x,y:x+y,ls)
def returnNumberCharList(x):
resultList=[]
for temp in x:
resultList.append(temp)
return resultList
def main():
try:
number=input()
print(f"{eval(returnReverseNumberString(returnNumberCharList(number)))}")
except Exception as e:
print("The data's type of inputing is bad!")
print("Error:",e)
finally:
pass
#---------------------
main()
输出
1234
4321
来源:https://blog.csdn.net/weixin_45912307/article/details/108620063
标签:python,四位数,反向输出
0
投稿
猜你喜欢
pandas 选择某几列的方法
2022-04-08 13:14:36
python实现画循环圆
2023-01-17 02:18:28
Python爬虫之Selenium实现窗口截图
2022-09-19 20:09:23
Python列表的深复制和浅复制示例详解
2023-01-29 01:26:47
Python函数中参数是传递值还是引用详解
2022-10-13 02:45:18
使用PDB模式调试Python程序介绍
2021-12-12 02:29:42
Python实现 PS 图像调整中的亮度调整
2021-04-02 20:08:54
python绘制三维图的详细新手教程
2022-03-19 14:23:52
Django 日志配置按日期滚动的方法
2021-02-02 08:27:01
python把数组中的数字每行打印3个并保存在文档中的方法
2022-08-13 19:15:30
flask+layui+echarts实现前端动态图展示数据效果
2023-06-24 15:41:55
JavaScript 放大镜 移动镜片效果代码
2023-08-13 08:24:08
Oracle中时间日期转化函数to_date和to_char的具体使用
2023-07-15 20:20:20
基于javascript的Form表单验证
2024-04-10 16:20:03
numpy.linalg.eig() 计算矩阵特征向量方式
2022-11-04 05:27:00
vue路由跳转了但界面不显示的问题及解决
2024-05-29 22:49:45
ASP CacheControl 属性
2009-04-28 13:09:00
如何从MySQL数据库表中检索数据
2008-11-01 17:08:00
Python爬虫实现百度图片自动下载
2021-07-12 22:42:56
Python with关键字,上下文管理器,@contextmanager文件操作示例
2022-06-22 05:33:12