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

未経験者のpython学習1日目

Last updated at Posted at 2024-02-01

この記事の目的

インプットした知識や情報を文字に起こすことで記憶に定着させる。自分が学習したこと、知らなかったこと、疑問に思ったことをアウトプットすることでエンジニアとして成長することを目的とする。

本日学んだこと

Python自体学んだことがなかったため、まずは簡単にPythonの全体理解をすることから始めた。
以下に本日学んだことを記載する。
・pythonとは数値計算からWebアプリ開発、AI開発など幅広い用途で使えるプログラミング言語である。
・GoogleやInstagramをはじめとして幅広い企業で利用されている
・Pythonは人が書いたプログラムを機械語に翻訳して実行する「インタプリタ言語」である。ほかの言語の場合人間が書いたコードを機械が認識できる形式に変換する「コンパイル」という作業が必要になる。一方Pythonはコンピューターがプログラムを読み込みながら即座に実行するため、コンパイルが不要である。そのため、不具合があればその場ですぐに確認できる。

Progateで実践

print
image.png
画面に文字列や数値を表示するのに用いる

str、int
image.png
image.png
str:数値型を文字列型に変換する
int:文字列型を数値型に変換する

if
image.png
if文を用いると「もし〇〇ならば、××を行う」といった条件分岐が可能となる

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