標籤:

python初學者,如果你連這樣的習題寫不出代碼,該怎麼辦?

用循環和print 語句輸出上面乘法樣式。

# coding:utf-8npython 3nnnnumber1 = 1nnprint("{:<10}".format(x), end=" ")nfor i in range(1, 13):n print("{:<10}".format(i), end=" ")nprint()nwhile number1 <= 12:n print("{:<10}".format(str(number1)), end=" ")n number2 = 1n while number2 <= 12:n print("{:<10}".format(str(number2 * number1)), end=" ")n number2 = number2 + 1n print()n number1 = number1 + 1n

如果上面的代碼寫不出,說明基礎的循環都沒有搞清楚。

怎麼辦,請看

如何訓練自己的編程思路 - 通過python學會編程 - 知乎專欄

推薦閱讀:

Fluent Python 筆記(四):字典和集合
Python GUI教程(七):轉換qt設計師的ui代碼為Python代碼
python多進程進程間通信疑問,求大神指教?(主進程獲取不到子進程變數)
Python程序中不同的重啟機制
使用vs code進行Python編程,如何進行input輸入?

TAG:Python |