在網上無意中看到乙個問題,心血來潮寫了寫,覺得比較有意思,以後遇到這種有意思的小練習也記錄下。
#!/usr/bin/env python
# -*- coding:utf-8 -*-
'''1) 分治: 哪些較為簡單的問題需要解決?
2) 考慮使用字串來構建數字,然後再轉換。
3) range迭代器可能會有所幫助
1 * 8 + 1 = 9
12 * 8 + 2 = 98
123 * 8 + 3 = 987
1234 * 8 + 4 = 9876
12345 * 8 + 5 = 98765
123456 * 8 + 6 = 987654
1234567 * 8 + 7 = 9876543
12345678 * 8 + 8 = 98765432
123456789 * 8 + 9 = 987654321
1 * 9 + 2 = 11
12 * 9 + 3 = 111
123 * 9 + 4 = 1111
1234 * 9 + 5 = 11111
12345 * 9 + 6 = 111111
123456 * 9 + 7 = 1111111
1234567 * 9 + 8 = 11111111
12345678 * 9 + 9 = 111111111
123456789 * 9 + 10 = 1111111111
'''for i in range(1,10):
x = ''.join([str(j) for j in range(1,i+1)])
x=int(x)
print('{} * {} + {} = {}'.format(x,8,i,x*8+i))
for i in range(2, 11):
x = ''.join([str(j) for j in range(1, i)])
x = int(x)
print('{} * {} + {} = {}'.format(x, 9, i, x * 9 + i))
python練習小程式
1.今年是否為閏年 import time thisyear time.localtime 0 print time.localtime if thisyear 400 0 or thisyear 4 0 and thisyear 100!0 print this year s is leap ye...
Python小練習三
給出下列文件,但求使用者可以不使用者文字編輯器的情況下修改配置文件 1.只修改backend的配置就可以 2.使用者需要輸入backend,在輸入網域名稱 最後輸入具體配置 the key input 請輸入需要修改的標識1 the value input 請輸入需要修改的標識2 the conte...
python 小練習二
coding utf 8 輸入一句英文,要求倒敘列印出來。例如 i love you you love i b i can go through any troubles,and you?nni hao list a b.split while true if list a 1 list a lis...