1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

事業企画1年生のpython学習1日目

Posted at

#本記事について
とある事業会社で事業企画をやっています。
元々は、新規営業1年→エンプラ営業3年やっていました。
事業企画への異動に伴って、ルーチンワークの自動化やスクレイピングに興味を持ちpython学習をスタートしました。
目的達成までは記事を執筆予定です。どうぞよろしくお願いいたします。

#開発環境
jupyterlab

#使っている本
すっきりわかるpython入門
https://sukkiri.jp/books/sukkiri_python

#勉強計画
週5日間1h勉強する。
最初の1weekは1冊終わらせることをgoalに。
start@ 2022/2/21

#学習時間
1.5h

#学び

var = 15 //変数のこと、上書きのため同じ変数使うのは避けたい、大文字
name = input('お名前は') //変数の中に代入したい内容を入力してもらう
print('合計点is{}'.format(var))

str(var) //varをstring(文字列)として扱う関数
int(var) //varをint(整数)
float(var) //varを少数点に変更 、15.0に。
bool(var) //varをbool型に変更する

type(var) //varの変数の型を確認できる。

1
1
1

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?