面试题答案
一键面试config = {
"host": "your_host",
"port": "your_port",
"username": "your_username",
"password": "your_password"
}
def get_db_connection_string():
return f"{config['host']}:{config['port']}/{config['username']}:{config['password']}"