3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

どうも、チーズケーキが好きだから、ユーザー名がCheesecakeな人です:cheese:
今回は、Pythonという言語は一体何者なのか、解説していきます。

注意
この記事は初心者が調べたことをまとめているだけです。
間違いがあるかもしれません

Pythonとは

ざっくり言うと、1991年に開発された機械学習、Webサーバー、アプリケーションなど
身近なところにたくさん使われている言語です。

実際にPythonが使用されているサービス

  • Google
  • Youtube
  • Facebook

構文

# コメントアウト

# モジュールのインポート
from hoge import hoge
import hoge

# 変数の定義
huga = True

# if文,while文,for文
if huga:
    # インデントを必ず開けること
    print("huga is true")
else
    print('huga is false') # "か'で挙動は変わらない

for i in range(10):
    # 十回のループ
    print(i) # iはループ回数

while huga:
    # hugaがtrueの間、繰り返す
    print("fuga!")

特徴

  • 理解しやすい構文
  • インデントが必須
  • インタプリンタ型言語

結論

機械学習などのことによく使われ、今後活躍するであろう言語。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?