> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-docs-1917.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 人が読める形式の run 名にプログラムからアクセスするにはどうすればよいですか?

[`wandb.Run`](/ja/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](/ja/support/models/tags/experiments)</Badge>
