Python 基本語法

打印 整型和字符串python print(3) # 打印整型 print('hello world') # 打印字符串 運行結果app 3 hello world 變量函數 var = 10 strVar = "hello world" bVar = True print(type(var)) print(type(strVar)) print(type(bVar)) 運行結果 ui
相關文章
相關標籤/搜索