Python3基础 str : 字符串的逆序】的更多相关文章

         Python : 3.7.3          OS : Ubuntu 18.04.2 LTS         IDE : pycharm-community-2019.1.3       Conda : 4.7.5    typesetting : Markdown   code coder@ubuntu:~$ conda activate py37 (py37) coder@ubuntu:~$ ipython Python 3.7.3 (default, Mar 27 20…
         Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda : 4.5.11    typesetting : Markdown   code coder@Ubuntu:~$ source activate py37 (py37) coder@Ubuntu:~$ ipython Python 3.7.0 (default, Jun 28 2018, 13:1…
一.python3中,可迭代对象有:列表.元组.字典.字符串:常结合for循环使用:均可使用索引切片 实例: str = ' #str[start:stop:step] 遵循[左闭右开]规则 print(str[0:3]) #截取第一位到第三位的字符 #012 print(str[1:5]) #截取第二位到第六位之前的字符 #1234 print(str[:]) #截取字符串的全部字符 #0123456789 print(str[6:]) #截取第七个字符到结尾 #6789 print(str[…
字符串的逆序 #include<iostream> #include<string.h> using namespace std; void ReverseStr(char s[]){ int i,j; char tmp; for(i = 0,j = strlen(s)-1;i < (strlen(s)/2);i++,j--){ tmp = s[i]; s[i] = s[j]; s[j] = tmp; } return ; } int main(){ char s[] = &…
var str = "a,b,c,d,e,f,g";//声明一个字符串 str = str.split(',').reverse();//用split函数拆分成数组对象,再用reverse函数将数组倒序排列 alert(str); alert(str.length+":"+typeof(str)); alert(typeof(str.join)+":"+str.join('#')+":"+str.join('#').lengt…
         Python : 3.7.3          OS : Ubuntu 18.04.2 LTS         IDE : pycharm-community-2019.1.3       Conda : 4.7.5    typesetting : Markdown   code coder@ubuntu:~$ conda activate py37 (py37) coder@ubuntu:~$ ipython Python 3.7.3 (default, Mar 27 20…
         Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda : 4.5.11    typesetting : Markdown   code coder@Ubuntu:~$ source activate py37 (py37) coder@Ubuntu:~$ ipython Python 3.7.0 (default, Jun 28 2018, 13:1…
         Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda : 4.5.11    typesetting : Markdown   code """ @Author : 行初心 @Date : 18-9-23 @Blog : www.cnblogs.com/xingchuxin @Gitee : gitee.com/zhichengji…
         Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda : 4.5.11    typesetting : Markdown   code coder@Ubuntu:~$ source activate py37 (py37) coder@Ubuntu:~$ ipython Python 3.7.0 (default, Jun 28 2018, 13:1…
         Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda : 4.5.11    typesetting : Markdown   code coder@Ubuntu:~$ source activate py37 (py37) coder@Ubuntu:~$ ipython Python 3.7.0 (default, Jun 28 2018, 13:1…