number = input("輸入乙個數字:")
number = int(number)
ifnumber % 10 == 0:
print("這是10的整數倍")
else:
print("這不是10的整數倍")
msg = "請輸入你的年齡,我會告訴你對應的電影票價,或者輸入'quiz'退出:"
age = input(msg)
while age != 'quiz':
age = int(age)
if age < 3:
print("免費")
elif age <= 12:
print("10美元")
else:
print("15美元")
age = input(msg)
while
true:
print("hello world")
sandwich_orders = ['potato', 'tomato', 'banana']
finished_sandwiches =
while sandwich_orders:
sandwich = sandwich_orders.pop();
print("i made your " + sandwich + " sandwich.")
for sandwich in finished_sandwiches:
print("the " + sandwich + " sandwich is finished.")
高階程式設計技術第一周平時作業
文件 在python的主頁上除了基本的安裝程式,上面還附有python的文件 在上面可以找到python版本的特性 教程 語言參考 設定和用法等,另外有標準庫的函式介紹等可供學習和參考。社群 社群模組也有關於python的討論,不過中國的使用者組 暫時沒能開啟。新聞 上面發表了關於python的一系...
第四周程式設計作業
5 1輸入乙個正整數 n 1 n 10 和n 階方陣a的元素,如果方陣a中的所有元素都沿主對角線對稱,輸出 yes 否則,輸出 no 主對角線為從矩陣的左上角至右下角的連線,方陣a中的所有元素都沿主對角線對稱指對所有i,k,a i k 和a k i 相等。輸入輸出示例如下 輸入 3 1 2 3 4 ...
高階程式設計技術 第二週作業
本週的主要內容是list和tuple的使用以及其基礎操作。3 1 3 2 list的建立 查詢 names king water sheep ty for i in names print i what s up?3 8 3 11 list的簡單處理以及索引錯誤 place of interest ...