Python基础到进阶Python的一些特殊用法总结
Posted xjt2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python基础到进阶Python的一些特殊用法总结相关的知识,希望对你有一定的参考价值。
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的一些特殊用法总结的主要内容,如果未能解决你的问题,请参考以下文章