标签:重复 输出 from format world python练习 模块 变量赋值 key
# 有四个数字: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({1}{0}{0}。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
‘‘‘
标签:重复 输出 from format world python练习 模块 变量赋值 key
原文地址:https://www.cnblogs.com/howiehuang/p/11096703.html