gzj137070928 发表于 2020-10-27 17:26:15

元素分类

# 输入一个列表,要求列表中的每个元素都为正整数且列表包含的元素个数为偶数;
# 将列表中前一半元素保存至字典的第一个键值1中,后一半元素保存至第二个键值2中。
# 可以使用以下实现列表alist的输入:
# alist=list(map(int,input().split()))
# 输入格式:
# 共一行,列表中的元素值,以空格隔开。
# 输出格式:
# 共一行,以字典的形式打印结果。
alist = list(map(int, input().split()))
half = len(alist) // 2
d = dict.fromkeys('1', '2')
d['1'] = alist[:half]
d['2'] = alist
print(d)
页: [1]
查看完整版本: 元素分类