0
0

More than 1 year has passed since last update.

【社内勉強会用】Python入門

Last updated at Posted at 2022-07-10
1 / 13

社内python勉強会

[2022/07/11 編集中]

Python初めての人が対象です。pathlibやxlwingsやでエクセルファイルの操作をすることが目標です。


pythonのインストール

Windowsでは「Microsoft Store」からインストールするとPATHの設定もされるので簡単でした


コマンドプロンプトに触れてみる

Windows 10 のコマンドプロンプトとは?その起動方法と使用例を紹介


コマンドプロンプトはマウスを使わずコマンドと呼ばれる命令でPCを操作できる画面。


例えば

> mspaint

と入力するとペイントアプリが起動する。


> python

pythonが起動する

Python 3.9.13 (main, May 24 2022, 21:13:51) 
[Clang 13.1.6 (clang-1316.0.21.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>

>>> exit()

と入力するとpythonが終了します


パッケージ管理ツール Pipをつかう


pipはパッケージ管理に使う

料理の際にピーラーやチョッパーがあると便利なように、Pythonにもプログラミングがはかどるライブラリ(ツール)が無料で多数公開されています。
そのライブラリをインストールしたり管理したりする際に使用する管理ソフトが「pip」です。


pipでxlwingsをインストールしてみよう

コマンドラインから

> pip install xlwings

0
0
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
0
0