创新互联python教程:
中江ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!
写一个 Python 程序,用一个实例创建(x,x*x)形式的 1 到 n 的数字字典。
在这个 python 程序中,我们使用 for 循环从 1 迭代到用户指定的值。在 Python for 循环中,我们使用*运算符为字典赋值。
# Python Program to Create Dictionary of Numbers 1 to n in (x, x*x) form
number = int(input("Please enter the Maximum Number : "))
myDict = {}
for x in range(1, number + 1):
myDict[x] = x * x
print("\nDictionary = ", myDict)
在本 python 程序中,给定数= 5。
第一次迭代 x 将是 1:1,范围为(1,6) myDict[x]= x x myDict[1]= 1 1 = 1
第二次迭代 x 将是 2:对于范围(1,6) 中的 2,myDict[2] = 2 * 2 = 4
对循环迭代的剩余进行同样的操作
这是 Python 创建字典的另一种方法。这里我们用单行生成 x,xx 形式的数字的字典,请参考 [算术运算符](https://www.tutorialgateway.org/python-arithmetic-operators/)。
# Python Program to Create Dictionary of Numbers 1 to n in (x, x*x) form
number = int(input("Please enter the Maximum Number : "))
myDict = {x:x * x for x in range(1, number + 1)}
print("\nDictionary = ", myDict)
在为 x 生成字典,x* x 输出
Please enter the Maximum Number : 6
Dictionary = {1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6: 36}
>>>
Please enter the Maximum Number : 9
Dictionary = {1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6: 36, 7: 49, 8: 64, 9: 81}
>>>
文章名称:Python程序:创建(x,x*x)形式的1到n的数字字典
分享链接:http://www.stwzsj.com/qtweb/news30/13580.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联