Python
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")
elif x < 0:
print("Negative")
else:
print("Zero")
```
- 3. ループ:
```python
- forループ
for i in range(5):
print(i)
- whileループ
count = 0 while count < 5:
print(count) count += 1
```
- 4. 関数:
```python
- 関数の定義
def greet(name):
print("Hello, " + name + "!")
- 関数の呼び出し
greet("Alice") ```
- 5. リストと辞書:
```python
- リスト
numbers = [1, 2, 3, 4, 5] print(numbers[0]) # 1
- 辞書
person = {"name": "Alice", "age": 30} print(person["name"]) # Alice ```
- 6. モジュールのインポート:
```python import math print(math.sqrt(16)) # 4.0 ```
- 7. 例外処理:
```python try:
result = 10 / 0
except ZeroDivisionError:
print("Error: Cannot divide by zero")
```
これらはPythonの基本的な機能の一部です。Pythonは非常に柔軟で多様な用途に使われており、データ処理、ウェブ開発、機械学習などのさまざまな分野で広く活用されています。