日期6.27 Python练习001
Posted howiehuang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日期6.27 Python练习001相关的知识,希望对你有一定的参考价值。
# 有四个数字:1、2、3、4,能组成多少个互不相同且无重复数字的三位数?各是多少?
# 4*3*2
# for a,b,c in range(1,5) print(abc)
‘‘‘
问题:
1、如何判断三个数字各不相同--使用IF语句进行判断
2、如何输出一个三位数--格式化输出print("%d%d%d"%(a,b,c)
题外:
1、变量赋值简写 a = [i for i in range(1,5) if i%2 == 0]
2、输出格式化 整数输出%d
浮点数输出%f 例%.3f保留3位小数
字符串输出%s 例%10s 右对齐占10位;%-10s 左对齐占10位;%.2s截取2位字符串
fromat() 例print(100。format("hello","world"))
通过位置匹配,通过名字匹配,通过对象属性匹配,通过下标或KEY匹配参数
3、自增减的简写
a += 1
‘‘‘
n = 0 for a in range(1,5): for b in range(1,5): for c in range(1,5): if a!=b and b!=c and a!=c: print("%d%d%d"%(a,b,c)) #print("".format(a,b,c)) n = n+1 #n += 1 print(n)
‘‘‘
拓展1:
模块itertools 迭代对象
函数permutations 排列组合
‘‘‘
from itertools import permutations a = [i for i in range(1,5)] for x in permutations(a,3): print("%d%d%d"%(x[0],x[1],x[2])) #print("".format(x[0],x[1],x[2]))
‘‘‘
拓展2:格式化输出
%和format
‘‘‘
以上是关于日期6.27 Python练习001的主要内容,如果未能解决你的问题,请参考以下文章