> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-docs-hivemind-launch.mintlify.site/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"사람이 읽을 수 있는 run 이름은: {run_name}")
```

***

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