練習常量 全大寫定義
注釋
基礎資料型別
通過type(變數名)來獲取變數的資料型別
a =
'aa'
b =1
c =1.11
print
(type
(a))
print
(type
(b))
print
(type
(c))
執行返回的結果
<
class
'str'
>
#字串
<
class
'int'
>
#整數
<
class
'float'
>
#小數
#bool 布林值:真假 真/true/1 假/false/0
#bool布林值
#1>2 假 false
#2=3 假 false
#3<5 真
#0 假
#1 真
#除了0以外的所有數字都是真
float 小數 浮點型
print
(type(1
))print
(type
(1.23))
print(10
/2)
tmp1 =
'abc'
print
(tmp1)
tmp2 =
"abc"
print
(tmp2)
t*** =
'鋤禾日當午,\n汗滴禾下土。'
print
(t***)
tmp4 =
'''鋤禾
日當午,
汗滴禾下土。'''
print
(tmp4)
print
('你是"誰"'
)s =
('123'
)n =
(123
)print
(type
(s))
print
(type
(n))
s1 =
'alex'
s2 =
'sb'
print
(s1+s2)
print
(s2*2)
print
('alex'+3
)#字串只能和字串相加
print
('alex'
*'sb'
)#字串只能和數字相乘
輸入輸出
print(1
,2)print
('小明的年齡是:',40
)print
('hello'
,'alex'
,123
,456
,'漢字'
)
age =
input
('請輸入你的年齡 :'
)print
(age,
'歲')
# 使用者輸入 名字 年齡 性別
# 列印:歡迎 ***,你的性別是,年齡是
name =
input
('請輸入你的名字:'
)gender =
input
('請輸入你的性別:'
)age =
input
('請輸入你的年齡 :'
)print
('歡迎'
,name,
'你的性別是'
,gender,
'你的年齡是'
,age,
'歲')
PHP 資料型別及常量
沒想到又回到了php,不說了,先熟悉熟悉以前的知識 created on 2013 7 18 php資料型別以及資料型別之間的轉換 php資料型別的轉換有兩種 1 自動轉換 在大多數情況下,php會根據實際的變數型別自動完成轉換 2 強制型別轉換 用的不多,但是也可以強制型別轉換 settype 變...
php常量及資料型別
1 php中的字串可以使用的三種定義方法及其區別 定義方式 單引號,雙引號,heredoc和newdoc 區別 1 單引號不能解析變數 2 單引號不能解析轉義字元,只能解析單引號和反斜線本身 3 單引號效率更高 4 變數和變數,變數和字串,字串和字串之間可以用.連線 5 雙引號可以使用特殊字元和 包...
Java常量和變數及資料型別
常量的命名規範 所有字母全部大寫,多個單詞之間用下劃線連線。看下面的demo public class demo1 解釋最後一條輸出語句,輸出基本資料型別double的最小值,min value為最小值,顯然是個常量。還有比較常見的乙個常量是 pi 就是3.1415926 注意 程式設計規範中,類名...