字符串
替换
空格
:请实现一个函数,把
字符串
中的每个
空格
替换成“%20”。例如输入“we are happy.”,则输出“we%20are%20happy.”#include<stdio.h>
#include<string.h>
#include<stdlib.h>
void insert(char *arr)
python
学习------指定
字符串
补全
空格
需求:如果希望
字符串
的长度固定,给定的
字符串
又不够长度,我们可以通过rjust,ljust和center三个方法来给
字符串
补全
空格
。如果是数字型先将其转为
字符
,再使用rjust,ljust和center三个方法。 实现: 一、rjust,向右对其,在左边补
空格
#vim test.py