與小卡特一起學python 第8章 動手試一試原始碼
#與小卡特一起學python 8章動手試一試原始碼
#8.1 編寫一個程式,顯示乘法表,開始時候詢問使用者顯示哪個數的乘法表
##import easygui
##looper = easygui.integerbox("Which multiplication table would you like?")
looper = int(input("Which multiplication table would you like?\n"))
print("Here's your table:")
for i in range(1,11):
print(looper ,"x",i,"=",looper * i)
#8.2 用例子1中題目試著用while迴圈完成
looper =int(input("Which multiplication table would you like?\n"))
print("Here's your table:")
i=1
while i<11:
print (looper,"x",i,"=",i*looper)
i=i+1
#8.3 向乘法數中加點互動,問希望乘到最大是幾?
looper =int(input("Which multiplication table would you like?\n"))
lager =int(input("How high do you want to go?\n"))
i=1
print("Here's your table:")
##while i <=lager:
## print(looper,"x",i,looper*i)
## i=i+1
for i in range(1,lager+1): #range()要加1
print(looper,"x",i,looper*i)
#8.1 編寫一個程式,顯示乘法表,開始時候詢問使用者顯示哪個數的乘法表
##import easygui
##looper = easygui.integerbox("Which multiplication table would you like?")
looper = int(input("Which multiplication table would you like?\n"))
print("Here's your table:")
for i in range(1,11):
print(looper ,"x",i,"=",looper * i)
#8.2 用例子1中題目試著用while迴圈完成
looper =int(input("Which multiplication table would you like?\n"))
print("Here's your table:")
i=1
while i<11:
print (looper,"x",i,"=",i*looper)
i=i+1
#8.3 向乘法數中加點互動,問希望乘到最大是幾?
looper =int(input("Which multiplication table would you like?\n"))
lager =int(input("How high do you want to go?\n"))
i=1
print("Here's your table:")
##while i <=lager:
## print(looper,"x",i,looper*i)
## i=i+1
for i in range(1,lager+1): #range()要加1
print(looper,"x",i,looper*i)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/220205/viewspace-2073994/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 與小卡特一起學python 第14章 物件 動手試一試Python物件
- 與小卡特一起學Python 第15章 模組 及動手試一試Python
- 與小卡特一起學python 第13章 函式-積木 動手試一試Python函式
- 與小卡特一起學python 第5章 輸入 測試題和動手試一試Python
- 與小卡特一起學python 第12章 收集起來,列表與字典 動手試一試Python
- 與小卡特一起學python 第11章 巢狀與可變迴圈 動手試一試Python巢狀
- 與小卡特一起學python 第6章 gui-圖形使用者介面 測試和動手試一試PythonGUI
- 與小卡特一起學python 第2章 記住記憶體和變數 課後 動手試一試Python記憶體變數
- 與小卡特一起學python 第14章 物件Python物件
- 與小卡特一起學python 第19章 聲音Python
- 與小卡特一起學python 第20章 使用pyqtPythonQT
- 與小卡特一起學python 第16章 圖形 Pygame學習PythonGAM
- 與小卡特一起學python 第13章 函式-積木Python函式
- 與小卡特一起學python 第3章 基本數學運算Python
- 與小卡特一起學python 第21章 列印格式化與字串Python字串
- 與小卡特一起學python 第10章 遊戲時間到了 程式碼清單Python遊戲
- 與小卡特一起學python 第4章 資料的型別Python型別
- 與小卡特一起學python 第11章 巢狀與可變迴圈Python巢狀
- 與小卡特一起學python 第22章 檔案輸入與輸出Python
- 與小卡特一起學python 第18章 一種新的輸入-事件Python事件
- 與小卡特一起學python 第9章 全都為了你-註釋Python
- 與小卡特一起學python 第17章動畫精靈和碰撞檢測Python動畫
- 與小卡特一起學python 第1章 出發吧 課後練習題Python
- 與小卡特一起學python 第1章 出發吧 1-2猜數遊戲Python遊戲
- 與小卡特一起學python 第8章 轉圈圈 FOR迴圈和條件迴圈Python
- 與小卡特一起學python 第7章 判斷再判斷 7-1-2-3-6-7Python
- 與小卡特一起學python 第2章 記住記憶體和變數 2-1練習Python記憶體變數
- 與小卡特一起學python 第5章 輸入 5-1,2,3,4 input()輸入函式Python函式
- 與小卡特一起學python 第10章 遊戲時間到了 pygame安裝及素材圖片準備Python遊戲GAM
- 與小卡特一起學python 第1章 出發吧 1-1練習我們第一個真正的程式Python
- 動手寫一個Remoting介面測試工具(附原始碼下載)REM原始碼
- 與小卡特一起學python 第6章 gui-圖形使用者介面 6-1-2-3-4-5 gui使用PythonGUI
- 《Python從入門到實踐》第二章動手試一試Python
- 《Python從入門到實踐》第五章動手試一試Python
- 《Python從入門到實踐》第七章動手試一試Python
- ElasticSearch學習一-小試牛刀Elasticsearch
- 《Python從入門到實踐》第六章動手試一試Python
- 系統測試論壇-一起測試