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

Python 基本構文

Posted at

Python 基本構文

本記事ではPython 3.9系の基本構文について解説します。

Pythonインストール手順(MacOS)

MacOSへのPythonインストール手順はこちらの記事を参照してください。

Python基本文法

1. 関数と引数

書き方:関数(引数)

例:

print("hello world")

2. インデント

コードブロックを示すために使用し、スペース1個以上で表現します。同じブロック内では揃える必要があります。

例:

if True:
    print("This is indented")
    print("This is also indented")
print("This is not indented")

3. 変数

書き方:変数名 = 値

例:

num = 27        # 数値
text = "Cat"  # 文字列

4. コメント

書き方:#で始まる

例:

# これはコメントです
print("Let's start")  # この行の後ろにもコメントを書けます

以上がPythonの基本構文の概要です。これらの基本を押さえることで、Pythonプログラミングの第一歩を踏み出すことができます。

オンラインでPythonを試したい方は、W3SchoolsのPython Syntaxページをご参照ください。

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