学习python第一课 变量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习python第一课 变量相关的知识,希望对你有一定的参考价值。
Author:uljfangbr/>E-mail:[email protected]
Mentor:Liu Youyuan
Time:2018-3-24
message="Hello , Python World!"
print("message")
message="Hello, Python World! This language is Cool to learn well."
print("message")
run:
Hello , Python World!
Hello, Python World! This language is Cool to learn well.
message为变量
与变量相关联的信息:Hello,Python World!,也称为字符串(引号括起来)
变量的值可以更改。
变量:字母,数字,下划线三中组合,数字不能做开头。变量命名简洁有程序描述性。变量出现在程序多个地方,要保持一致性。
|
message.title()
message.upper()
message.lower()
分别对应字符串首字母大写、字符串全部大写、字符串全部小写
以上是关于学习python第一课 变量的主要内容,如果未能解决你的问题,请参考以下文章