python如何将几个数字或者字符输入到一个列表或者字符串中在一行输出

python如何将几个数字或者字符输入到一个列表或者字符串中在一行输出


天涯尽头无女友
浏览 4399回答 3
3回答

温温酱

1,整数字符串转换为对应的整数int('12')2,小数字符串转换为对应小数float('12.34')3,数字转换为字符串str(123.45)4,ASCII码转换为相应字符chr(97)5,字符转换为响应ASCII码ord('a')

蛊毒传说

str1=""str_list=[]for i in range(5):N=input("please enter the number:")str1+=str(N)str_list.append(str(N))print str1print str_list

繁华开满天机

以下代码调试通过:1234567l = [] for i in range(5):    n = input("please enter the number:")    l.append(n) print('l:', l)运行效果:12345678please enter the number:12please enter the number:34please enter the number:56please enter the number:35please enter the number:22l: ['12', '34', '56', '35', '22'] Process finished with exit code 0 
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python