Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

コンピュータ演習A 25 : d7(6/2) Python-I print calendar

Last updated at Posted at 2023-05-22

復習

  • PowerPointでお互いにプレゼン

まなぶ項目

init

VSCode

programming編集には,code編集ソフトのVSCodeが便利です.

  • vscodeのインストール
  • Get Started with VS Code(Welcome画面でStartの下にあるOpen a Walkthrough…をクリック)
  • 初期動作

screen0602_vscode.png

kick_off

  > cd comp_a_25s
  > git stash
  > git pull origin main
  > cp bin/kick_off ../bin
  > cat ~/.config/fish/config.fish
  > if 'alias bat "batcat --theme Coldark-Cold"'が記述されていないなら
    > sudo apt install batcat
      > sudo apt install batcat # for failed occassion
      > brew install bat # for mac user
    > echo 'alias bat "batcat --theme Coldark-Cold"' > ~/.config/fish/config.fish
  > kick_off -h
  > kick_off -i | bat -l zsh

tidy dir

  > cd ../my_comp_a
  > mkdir lectures
  > mv d* lectures/
  > mkdir python
  > cp ../comp_a_25s/python/d7_print_calendar.md python/
  > cd python
  > code .

課題

PowerPointトーナメント課題

今日の隣のペアとの対戦で勝った方,負けた方の学籍番号と名前を次のmemo.mdに追記して提出してください.全員が出してください.

Python課題

以下の課題の答案を含んだメモをmemo.mdで作成してLUNAへ提出しなさい.

  • 初めて知ったことのmemoを取りなさい
  • "Hello bob(自分の名前)!" と出力するプログラムを書き,そのcodeと出力結果をmemo.mdに入れなさい
  • 自分の誕生日のcalendarを出力する
    • codeと出力結果をmemo.mdに入れなさい
    • 生まれた日が何曜日だったかを書きなさい.
    • 誕生秘話があればメモしておきなさい.

bob's text memo

vscodeの初期化

PS C:\Users\wsl_python> Remove-Item -Recurse -Force $env:USERPROFILE\.vscode
PS C:\Users\wsl_python> Remove-Item -Recurse -Force $env:APPDATA\Code

md関連ソース


  • source ~/Desktop/lecture_25s/comp_a_25s/python/orgs/d7_readme.org
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?