> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 사람이 읽기 쉬운 run 이름에 프로그래밍 방식으로 접근하려면 어떻게 하나요?

[`wandb.Run`](/ko/models/ref/python/experiments/run)의 `.name` 속성에 액세스하려면 다음 코드를 사용하세요:

```python theme={null}
import wandb

with wandb.init() as run:
   run_name = run.name
   print(f"The human-readable run name is: {run_name}")
```

***

<Badge stroke shape="pill" color="orange" size="md">[Experiments](/ko/support/models/tags/experiments)</Badge>
