我想製作一個盒子,用戶在其中輸入寬度,高度,盒子應該由什麼樣的符號和填充(盒子內)。我是一個新的python編碼器,所以任何建議都會很棒,但是新手級別的響應越好,所以我可以學習,而不是跳過很遠的技術。用python製作一個盒子,用戶可以控制輸入
def main():
width = print(int("Please enter the width of the box: "))
height = print(int("Please enter the height of the box: "))
symbol = print("Please enter the symbol for the box outline: ")
fill = print("Please enter the symbol for the box fill: ")
for a in range(width):
for b in range(height):
if i in #some condition here
print(symbol)
else:
print(fill)
main()
我預計的輸入應該是:
width: 4
height: 4
symbol: #
fill:1
####
#11#
#11#
####
那麼,什麼是你的代碼確切的問題?發生了什麼,你得到了什麼錯誤,......? (至少你的'或'子句似乎是錯誤的,但其他所有我們需要更多信息) – UnholySheep
StackOverflow是一個網站,用於獲得有關代碼特定問題的具體問題的幫助。我會查看http://codereview.stackexchange.com/,它可能更適合您的需求。只要確保閱讀那裏的規則,就像你應該在這裏完成的那樣。這可能會被標記和關閉,因爲它不是真正在這個網站的主題。 –
@UnholySheep,我要去掉或者這個條款。但原來的問題仍然存在 – chihao