I would like to pass some keyword with special character to a foo(**kwargs) function, but it doesn't work<br><br>def foo(**kwargs):<br> print kwargs<br><br><br>This doesn't work:<br><br>foo(a-special-keyword=5)<br><br>How do I tell Python to treat '-' as a normal character but not part of an expression?
<br><br>Thanks,<br>Khoa <br>