1. 程式人生 > >學習python第一課 變量

學習python第一課 變量

Python 變量

Author:uljfangE-mail:[email protected]
br/>E-mail:[email protected]
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第一課 變量