flip_coin
Simulate coin flips to generate random heads or tails outcomes for decision-making or probability testing. Specify the number of flips needed.
Instructions
抛硬币,返回正面或反面
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | 抛硬币次数,默认为1 |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 1,
"description": "抛硬币次数,默认为1",
"type": "number"
}
},
"type": "object"
}