python 資料類型和變數

來源:互聯網
上載者:User

標籤:python

#-*- coding:cp936 -*-print '資料類型和變數'print 100, -8080print 100-8080print 0x10print 1.23e5print 1.2e-5print 'I\'m\"OK\"!'#r''表示''內部的字串預設不轉義print r'\\\t\\'#用'''代替\n表示換行print '''line1line2line3'''print "布爾值,python區分大小"print Trueprint Falseprint '3>2'print 3>2print 'and or not 運算'print True and Trueprint True and Falseprint False and Falseprint '---------------------'age = 10if age >= 18:print 'adult'else: print 'teenager'print '----------變數-----------'a = 123 # a是整數print aa = 'ABC'print aprint '----------字串變數可以理解成指標-----------'a = 'abc'b = aa = 'xyz'print aprint bprint '----------在Python中,通常用全部大寫的變數名表示常量, 但python沒用const這類的關鍵字保證-----------'


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


python 資料類型和變數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.