1. 程式人生 > >快速入門Python3.5開發(1)

快速入門Python3.5開發(1)

1 Python快速入門課程介紹與環境搭建

知識點:

  • Python3.5環境搭建

  • 基本型別

  • 型別轉換

演示:

Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:38:48) [MSC v.1900 32 bit (In

tel)] on win32

Type "help", "copyright", "credits" or "license" for more information.

>>> import antigravity

>>>

>>> int(12.123
) 12 >>> int('123') 123 >>> str(123) '123' >>> >>> float('123') 123.0 >>> >>> 長=5 >>> 寬=3 >>> 面積=長*寬 >>> print(面積) 15 >>>