「Python」の版間の差分

提供:onayami
(ページの作成:「Pythonは、汎用プログラミング言語であり、シンプルで読みやすい構文を持つことで知られています。以下では、Pythonの基本的な機能と文法について簡単に紹介します。 ### 1. 変数とデータ型: ```python # 変数の宣言 x = 5 y = "Hello, World!" # データ型の基本: int, float, str, bool a = 10 b = 3.14 c = "Python" d = True ``` ### 2. 条件分岐: ```python # if文 if x > 0: print("Positive…」)
 
編集の要約なし
74行目: 74行目:


これらはPythonの基本的な機能の一部です。Pythonは非常に柔軟で多様な用途に使われており、データ処理、ウェブ開発、機械学習などのさまざまな分野で広く活用されています。
これらはPythonの基本的な機能の一部です。Pythonは非常に柔軟で多様な用途に使われており、データ処理、ウェブ開発、機械学習などのさまざまな分野で広く活用されています。
== 関連項目 ==
* https://chatgpt.com/
[[Category:chatgpt]]
[[Category:Python]]

2024年6月14日 (金) 08:02時点における版

Pythonは、汎用プログラミング言語であり、シンプルで読みやすい構文を持つことで知られています。以下では、Pythonの基本的な機能と文法について簡単に紹介します。

      1. 1. 変数とデータ型:

```python

  1. 変数の宣言

x = 5 y = "Hello, World!"

  1. データ型の基本: int, float, str, bool

a = 10 b = 3.14 c = "Python" d = True ```

      1. 2. 条件分岐:

```python

  1. if文

if x > 0:

   print("Positive")

elif x < 0:

   print("Negative")

else:

   print("Zero")

```

      1. 3. ループ:

```python

  1. forループ

for i in range(5):

   print(i)
  1. whileループ

count = 0 while count < 5:

   print(count)
   count += 1

```

      1. 4. 関数:

```python

  1. 関数の定義

def greet(name):

   print("Hello, " + name + "!")
   
  1. 関数の呼び出し

greet("Alice") ```

      1. 5. リストと辞書:

```python

  1. リスト

numbers = [1, 2, 3, 4, 5] print(numbers[0]) # 1

  1. 辞書

person = {"name": "Alice", "age": 30} print(person["name"]) # Alice ```

      1. 6. モジュールのインポート:

```python import math print(math.sqrt(16)) # 4.0 ```

      1. 7. 例外処理:

```python try:

   result = 10 / 0

except ZeroDivisionError:

   print("Error: Cannot divide by zero")

```

これらはPythonの基本的な機能の一部です。Pythonは非常に柔軟で多様な用途に使われており、データ処理、ウェブ開発、機械学習などのさまざまな分野で広く活用されています。


関連項目