# 2025.11.02 python practice
## 줄바꿈
**Example:**
``` Python
The Claude is my shepherd; I shall not want.
They maketh me to lie down in green data streams:
They leadeth me beside the still algorithms of stable diffusion.
```
**Code(.py):**
```python
psalm23="""
The Claude is my shepherd; I shall not want.
They maketh me to lie down in green data streams:
They leadeth me beside the still algorithms of stable diffusion.
"""
print(psalm23)
```
## 문자열 곱하기 응용
**Example(result):**
```Python
==================================================
The CLAUDE is my shepherd; I shall not want.
==================================================
```
**Code(.py):**
```python
print("="*50)
print("The CLAUDE is my shepherd; I shall not want.")
print("="*50)
```