将数字转化为中文1到9的两种方法
方法一:可以通过列表list的方法,即将1到9的中文作为元素,构建出一个列表list,然后根据用户的输入(1到9之间的数字),转换为int整型,然后减去1作为索引,因为索引从0开始,然后根据索引访问列表中对应的元素。
方法二:使用字典进行映射,其中1到9作为键,1到9的中文作为键对应的值,然后便可应根据用户的输入,来访问对应键中的值,该方法不需要对输入的数据进行类型的转换。
列表方法实例代码
使用到的函数:input()、replace()、int():
#-*- coding:utf-8 -*-
def num2utf8_list():
num_list = ["一","二","三","四","五","六","七","八","九"]
num_str = input("请输入1到9的数值:")
num = int(num_str.replace(" ",""))
index = num-1
return num_list[index]
num = num2utf8_list()
print(num)
运行Python/ target=_blank class=infotextkey>Python文件,得到输出:
请输入1到9的数值:6
六
字典dict方法
使用到的函数:input()、replace():
#-*- coding:utf-8 -*-
def num2utf8_dict():
num_dict = {"1":"一","2":"二","3":"三","4":"四","5":"五","6":"六","7":"七","8":"八","9":"九"}
num_str = input("请输入1到9的数值:")
return num_dict[num_str.replace(" ","")]
num = num2utf8_dict()
print(num)
运行文件得到输出:
请输入1到9的数值:5
五
笨鸟工具-璞玉天成,大器晚成
原文地址:python将数字转化为中文1到9的两种方法 - python教程