1樓:遙雙的小甜餅
print("\n".join(ls))
# 或寫入檔案
fo = open("隨機密碼.txt", "w")fo.write("\n".join(ls))fo.close()
求幫忙做一道非常簡單的python題
2樓:礻斤丶
num = input("which multiplication table would you like?\n")
print "here's your table"
i = 1
while i < 11:
print str(num), 'x', str(i), '=', str(num*i)
i = i + 1
3樓:匿名使用者
這麼來簡單的代原始碼,
bai自己思du考下就
zhi是dao了
num = int(raw_input('which ... like?\n'))
lop = 1
print 'here ... table:'
while(lop <= 10):
print '%s x %s = %s' % (num, lop, num*lop)
lop += 1
4樓:ilove爆頭
def fun(num=5):
n = 1
while n<=10:
print "%s x %s = %s" % (num, n , num * n)
n += 1
求一道簡單的python題:輸出1~100之間能被3整除,並且個位數為6的數。
5樓:匿名使用者
if i%3==0 and i%6==10: 這句有問題。
判斷個位是否為6,應該是:
if i%3==0 and i%10==6:
一道簡單的python題
6樓:壹寸相思壹寸輝
#指令碼:
#!/usr/bin/env pythonweight=float(raw_input('please input your weight:'))high=float(raw_input('please input your high:
'))print ''.format(weight/(high**2))#輸出
版:權please input your weight:80please input your high:1.7526.12
乙個簡單的python問題?
7樓:半邊河
並沒有出現你說的輸出1啊。而是輸出了2,1原因就是i的取值是從列表【1,0】中遍歷。分別是1和0。
第一次取值1時,print(i+1)結果就是2。
同理,第二次列印結果是1
8樓:石卒冫水
你這個是遍歷列表。第一次迴圈i讀取1,輸出2,第二次迴圈i讀取0,輸出1.
9樓:python開發者
for i in [1,2,3,4,5,6,7,8,9,0]:
print(i+1)
你的**的問題:
縮排是使用range(1,end+1),列表也可以
10樓:全棧測試工程師
你列表最後乙個值是0 遍歷到最後 不就輸出1了嘛
求解這一道簡單python函式題?
11樓:gta小雞
def make_great(l):
for i in range(len(l)):
l[i] = 'the great ' + l[i]
12樓:匿名使用者
try this :
一道簡單的python程式設計題
13樓:匿名使用者
這個是典型的遞迴函式例子,你們老師給這個題目,一般是在講解遞迴函式之後。所以最好使用遞迴函式解題。
14樓:匿名使用者
這不就是for迴圈一直乘就好了
15樓:手機使用者
def key(n):
if n ==1:
return 1
else:
return n*key(n-1)
函式名字都隨便的啦 注意縮排
python的乙個簡單問題 10
16樓:草原上之狼
一道python題,求助一道Python題
按照題目要求編寫的python程式如下 n 1i 1 m 1print format n square while n 25 print format n,m i i 2 m m i n n 1 源 注意源 版 的權縮排 求助一道python題 縮排格式看圖專屬 c 0n int input for...
菜鳥求問一道簡單的Python的easygui模組的問題
最後一句easygui.msgbox 裡面是用 連線的,不是逗號 要想如題輸出的話,再加上換行符 n 比如easygui.msgbox name n address n city n postal 你是不是輸入了漢字?python easygui模組的問題 如果確保你的模組沒有問題,看下你的系統變數...
一道生物問題求助,求助一道生物題,分析過程,謝謝了
你可以這樣理解。水流動的目的是使內外濃度相等。所以水往濃度高的地方流,使濃度高的變低,從而內外相等。從擴散的角度看的話,物質確實應該從濃度高的地方向濃度低的地方擴散,而這個濃度指的是物質本身的濃度。你的疑問就在於濃度問題,水從濃度低的地方向濃度高的地方流 這裡的濃度指的是溶於水中的物質 假設為物質a...