デザイン演習第6回

可能性の模索

pythonのシーケンスの機能を使って、文字を簡単に箱の中に入れるコードを書きました。
  1. sentence=input("文字を入力する:")
  2. #画面の幅、長さ、横幅
  3. screen_width=80
  4. text_width=len(sentence)
  5. box_width=text_width+6
  6. left_marjin=(screen_width-box_width)//2
  7. print()
  8. print(''*left_marjin+'+' +'-'*(box_width-2)+ '+')
  9. print(''*left_marjin+'| ' +' '*text_width +' |')
  10. print(''*left_marjin+'| ' + sentence +' |')
  11. print(''*left_marjin+'| ' +' '*text_width +' |')
  12. print(''*left_marjin+'+' +'-'*(box_width-2)+ '+')
  13. print()