1. 程式人生 > >Python學習--資料型別

Python學習--資料型別

#!/usr/bin/python
# -*- coding: utf-8 -*-
# Filename dataType.py
# Python有四種類型的數
# 1.整型
a = 2
print a
# 2.長整型
b = 123456789
print b
# 3.浮點數
c = 3.2E2
print c
# 4.複數 複數為實數的推廣,它使任一多項式都有根。複數當中有個“虛數單位”j,它是-1的一個平方根。任一複數都可表達為x+yj,其中x及y皆為實數,分別稱為複數之“實部”和“虛部”。
d = (2+3j)
print d

# 字串,單雙引號是一個意思
e = 'hello world'
print e
f = "hello world"
print f
# 三引號引用多行字串
g = '''My name is 
python'''
print g
# 轉義符
h = 'what\'s your name?'
print h
# 行末加\表示繼續顯示下一行,不換行
i = 'this is a ap\
ple'
print i
# 字串連結
j = 'hello' ' world'
print j
# 使用逗號會讓換行變為空格
l = 'hello'
m = 'world'
print l,
print m

  • 第二行是定義字元編碼為utf-8,不然不能新增中文註釋。
  • Python中變數名必須以字母或者下劃線開始,變數名只能包括大小寫字母,數字,下劃線。
  • 變數名是大小寫敏感的,a和A不是一個變數。
  • 程式碼執行結果:
2 123456789 320.0 (2+3j) hello world hello world My name is  python what's your name? this is a apple hello world hello world