1.摄氏度转换华氏度
c = float(input('输入摄氏度:'))
f=(c*1.8)+32
print('%0.1f摄氏度转换为华氏度为%0.1f'%(c,f))
2.能被17整除的数
n=0
for i in range(100,1000):
if i%17==0:
print(i)
n=n+1
print('一共有:',n)
3.1234组成的不同三位数
def test(params):
mlist = []
count = 0
for i in params:
for j in params:
for k in params:
if i != j and j != k and k != i:
mlist.append(i + j + k)
count += 1
print("一共有 {} 中情况,分别是 {}".format(count, mlist))
test("1234")
4.密码不区分大小写
print("请输入您的密码")
str1=input('')
str2='Xusiwen666'
if str1.lower()==str2.lower():
print("密码正确")
else:
print("密码错误")
5.列表的改变(排序