共计 2379 个字符,预计需要花费 6 分钟才能阅读完成。
导读 | 大多数人学习的第一门编程语言是 C /C++,个人觉得 C /C++ 也许是小白入门的最合适的语言,但是必须承认 C /C++ 确实有的地方难以理解,初学者如果没有正确理解,就可能会在使用指针等变量时候变得越来越困惑,进而减少对于编程的兴趣,但是不可否认,一个程序员对于语言的深入理解是必备技能。学习过 C /C++ 的同学转写 python 会很容易理解里面的规则,从而使得代码更加高效,优雅。下面我们总结一下 python 的基础知识。 |
C/C++ 标识符的命名规则:变量名只能包含字母、数字和下划线,并且不可以以数字打头。不可以使用 C /C++ 的关键字和函数名作为变量名。
变量命名的规则和 C /C++ 标识符的命名规则是类似的:变量名只能包含字母、数字和下划线,并且不可以以数字打头。不可以使用 python 的关键字和函数名作为变量名。
另外,我们在取名的时候,尽量做到见名知意(具有一定的描述性)。
在 python 种,用引号括起来的都是字符串(可以是单引号,也可以是双引号)
虽然,字符串可以是单引号,也可以是双引号,但是如果出现混用,可能就会出错,如下例:
"I told my friend,'python is really useful'" #true'I told my friend,"python is really useful" '#true'I told my friend,'python is really useful' ' #false
一般情况下,我们的集成开发环境会对于我们写的代码进行高亮显示的,应该写完之后根据颜色就可以看出来错误(但是不是所有人都能看出来的),如果没看出来,可以在编译的时候,发现报错如下:
SyntaxError: invalid syntax
这时候,我们就应该去检查一下,是不是在代码中引号混用等。
str = "The best makeup is a smile."
print(str)
print(str.title() )
print(str)
输出如下:
The best makeup is a smile.
The Best Makeup Is A Smile.
The best makeup is a smile.
总结,通过这个例子,这可以看出来 title() 方法是暂时的,并没有更改原来字符串的值。
str = "The best makeup is a smile."
print(str)
print(str.upper() )
print(str)
输出如下:
The best makeup is a smile.
THE BEST MAKEUP IS A SMILE.
The best makeup is a smile.
总结,通过这个例子,这可以看出来 upper() 方法是暂时的,并没有更改原来字符串的值。
str = "The best makeup is a smile."
print(str)
print(str.lower() )
print(str)
输出如下:
The best makeup is a smile.
the best makeup is a smile.
The best makeup is a smile.
总结,通过这个例子,这可以看出来 lower() 方法是暂时的,并没有更改原来字符串的值。
python 使用“+”号来合并字符串。
例如:
str = "The best makeup is a smile."
print("He said that"+str.lower() )
输出如下:
He said that the best makeup is a smile.
例如:
str = "The best makeup is a smile."
print(str)
print(str.lstrip() )
print(str)
输出如下:
The best makeup is a smile.
The best makeup is a smile.
The best makeup is a smile.
总结,通过这个例子,这可以看出 lstrip() 方法是暂时的,并没有更改原来字符串的值。
例如:
str = "The best makeup is a smile."
print(str)
print(str.rstrip() )
print(str)
输出如下:
"The best makeup is a smile."
"The best makeup is a smile."
"The best makeup is a smile."
总结,通过这个例子,这可以看出 rstrip() 方法是暂时的,并没有更改原来字符串的值。
例如:
str = "The best makeup is a smile."
print(str)
print(str.strip() )
print(str)
输出如下:
"The best makeup is a smile."
"The best makeup is a smile."
"The best makeup is a smile."
总结,通过这个例子,这可以看出 strip() 方法是暂时的,并没有更改原来字符串的值。
看到这里,你估计想问,那我如何更改字符串的值呢?只需要将更改过后的值再写回原来的字符串就可以了。
下面我们来举一个例子:
str = "The best makeup is a smile."
print(str)
str = str.title()
print(str)
输出如下:
The best makeup is a smile.
The Best Makeup Is A Smile.
好啦,今天的字符串总结先到这里,如果有疑问,欢迎留言。