python 資料型別和變數

2021-07-02 02:00:29 字數 1103 閱讀 3033

#-*- coding:cp936 -*-

print '資料型別和變數'

print 100, -8080

print 100-8080

print 0x10

print 1.23e5

print 1.2e-5

print 'i\'m\"ok\"!'

#r''表示''內部的字串預設不轉義

print r'\\\t\\'

#用'''代替\n表示換行

print '''line1

line2

line3'''

print "布林值,python區分大小"

print true

print false

print '3>2'

print 3>2

print 'and or not 運算'

print true and true

print true and false

print false and false

print '---------------------'

age = 10

if age >= 18:

print 'adult'

else:

print 'teenager'

print '----------變數-----------'

a = 123 # a是整數

print a

a = 'abc'

print a

print '----------字串變數可以理解成指標-----------'

a = 'abc'

b = a

a = 'xyz'

print a

print b

print '----------在python中,通常用全部大寫的變數名表示常量, 但python沒用const這類的關鍵字保證-----------'

在cmd中cls是用來清空螢幕的.當內容多時可以用用!

python資料型別和變數

我在 我的技術分享 開始寫python 教程,剛寫了幾帖,現在分享給大家 下面我們來介紹一下python的資料型別和變數 一 資料型別 python共有整型 浮點型 字串 布林值等型別 1 整型 i 8 print i 8 j 0xf print j 15 print i j 23上面i被賦值為8,...

python 資料型別和變數

python 資料型別和變數 整數 python可以處理任意大小的整數,當然包括負整數,在程式中的表示方法和數學上的寫法一模一樣,例如 1,100,8080,0,等等。計算機由於使用二進位制,所以,有時候用十六進製制表示整數比較方便,十六進製製用0x字首和0 9,a f表示,例如 0xff00,0x...

Python資料型別和變數

資料型別 在python中,能夠直接處理的資料型別有以下幾種 整數 python可以處理任意大小的整數,當然包括負整數,在程式中的表示方法和數學上的寫法一模一樣,例如 1,100,8080,0等等。計算機由於使用二進位制,所以,有時候用十六進製制表示整數比較方便,十六進製製用0x字首和0 9,a f...