------
## 最终结论
```python
def replace_blank(input_string, character):
    return input_string.replace(" ", character)

# Test cases
assert replace_blank("hello people",'@')==("hello@people")
assert replace_blank("python program language",'$')==("python$program$language")
assert replace_blank("blank space","-")==("blank-space")
```