如何在Python中執行此操作?Python中的C的strnset()有沒有等價的函數?
strnset(string,symbol,n);
輸出應該是:
Enter String : ABCDEFGHIJ
Enter Symbol for replacement : +
How many string characters to be replaced : 4
Before strnset() : ABCDEFGHIJ
After strnset() : ++++EFGHIJ
從技術上講,你不能,因爲Python中的字符串是不可變的。 –
認真嗎?即使在你的['strncpy'問題](http://stackoverflow.com/questions/18535563/is-there-any-strncpy-equivalent-function-in-python)得到的迴應之後,你會問這個問題嗎? –