码迷,mamicode.com
首页 > 编程语言 > 详细

【Python基础到进阶】Python的一些特殊用法总结

时间:2019-06-14 18:06:01      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:一行代码   range   class   nbsp   input   put   特殊用法   style   bsp   

Python的一些特殊用法总结

格式化打印输出

values=input(">>>")
l=values.split(",")
t=tuple(l)
print(f"List of values : {l}")
print(f"Tuple of values : {t}")
x = {name:"xiong","age":26}
print(f"{x}")

‘‘‘
>>>12,56,48,98,36,22
List of values : [‘12‘, ‘56‘, ‘48‘, ‘98‘, ‘36‘, ‘22‘]
Tuple of values : (‘12‘, ‘56‘, ‘48‘, ‘98‘, ‘36‘, ‘22‘)
{‘name‘: ‘xiong‘, ‘age‘: 26}
‘‘‘

一行代码实现的for循环

n=int(input(">>>"))
d={x:x*x for x in range(1,n+1)}
print(d)

"""
>>>8
{1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6: 36, 7: 49, 8: 64}
"""

 

【Python基础到进阶】Python的一些特殊用法总结

标签:一行代码   range   class   nbsp   input   put   特殊用法   style   bsp   

原文地址:https://www.cnblogs.com/XJT2018/p/11024469.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!