SlideShare a Scribd company logo
大家一起學python
環境安裝
Debian版本的安装命令如下:
su – aptitude install ipython python-setuptools
Fedora版本的安装命令如下:
su – yum install ipython python-setuptools-devel
Gentoo版本的安装命令如下:
su – emerge ipython
Ubuntu版本的安装命令如下:
sudo apt-get install ipython python-setuptools
從軟體源安裝
來源:https://github.com/ipython/ipython/downloads
解壓縮:tar xzf ipython-<version>.tar.gz
使用git:git clone https://github.com/ipython/ipython.git
進入ipython目錄:cd ipython
安裝指令:sudo setup.py install
宣告變數
my_int = 7
my_float = 1.23
my_bool = True
my_string = “Hello!”
Whitespace
def spam():
eggs = 12
return eggs
print spam()
Vim 縮排設定:vim ~/.vimrc
set sw=4
set ts=4
filetype indent on
autocmd FileType python setlocal et sta sw=4 sts=4
參考:
http://linux-wiki.cn/wiki/Vim%E4%BB%A3%E7%A0%81%E7%BC%A9%E8%BF%9B%E8%AE%BE%E7%BD%AE
Comments
#Hello
""""Hellowbyebye"""
String
my_string = “Hello”
String_len = len(my_string) // 5
my_string.lower() //”hello”
my_string. upper() //”HELLO”
str(10) // “10”
+
"Let's not go to %s. 'Tis a silly %s." % (str1, str2)
輸入
my_input = int(raw_input(“input message:"))
Conditionals
EX:
if answer > 5:
return 1
elif answer < 5:
return -1
else:
return 0
function
Def function_name (argument[, argument]):
#Do
Lists
EX:
numbers = [5, 6, 7, 8]
numbers[0] = 5
len(numbers) // 4
numbers[start: end: step]
numbers.append(9)
Dictionaries
EX:
d = {'key1' : 1, 'key2' : 2, 'key3' : 3}
d['key1' ] = 1
d['key4’ ] = 4
d.remove('key3' )
Loop
EX:
while condition:
#Do
else:
#
for variable in list_name: for i in range():
# Do #Do
Class
class CLASS_NAME(object):
def __init__(self, a1, a2, a3)
self.a1 = a1
self.a2 = a2
self.a3 = a3
My_class = CLASS_NAME(a1,a2,a3)

More Related Content

PPTX
vSRX automation lab 2: Ubuntu setup
KEY
Python setup
PPTX
Great Hiroshima with Python 170830
PDF
One key sheard site to site open vpn
PDF
TXT
Cluster setup multinode_aws
DOCX
Proxy server ubuntu 12.04
PDF
How to install OpenStack MITAKA --allinone - cheat sheet -
vSRX automation lab 2: Ubuntu setup
Python setup
Great Hiroshima with Python 170830
One key sheard site to site open vpn
Cluster setup multinode_aws
Proxy server ubuntu 12.04
How to install OpenStack MITAKA --allinone - cheat sheet -

What's hot (20)

PDF
Metasploit cheat sheet
PPTX
Installing tensorflow object detection on raspberry pi
PDF
Configuration of SFTP Server on CentOS 8.pdf
PDF
Configuration of Smtp Server On CentOS 8
PDF
3 manual installation of open vpn
PPTX
High Availability Server Clustering without ILB(Internal Load Balancer) (MEMO)
PDF
LinuxをインストールしてWebサーバーを立ち上げてみよう【OSC2018 Tokyo/Spring】
PDF
How to twist a IPv6 over Bluetooth (6lowpan)
PPTX
PDF
Dev ops
PDF
RabbitMQ Server - cheat sheet -
DOCX
Dockerfish-Tutorial
PPTX
Install zpanel on linux server in 5 minutes
PDF
Jvm的最小使用内存测试
PDF
Surf iOS版 中文用户指南
ODP
Sayoo odoo open_erp
DOCX
Cacti安装手册
PDF
MQTTS mosquitto - cheat sheet -
PDF
Instalando rrd tool-no-centos-5-usando-yum
TXT
Network
Metasploit cheat sheet
Installing tensorflow object detection on raspberry pi
Configuration of SFTP Server on CentOS 8.pdf
Configuration of Smtp Server On CentOS 8
3 manual installation of open vpn
High Availability Server Clustering without ILB(Internal Load Balancer) (MEMO)
LinuxをインストールしてWebサーバーを立ち上げてみよう【OSC2018 Tokyo/Spring】
How to twist a IPv6 over Bluetooth (6lowpan)
Dev ops
RabbitMQ Server - cheat sheet -
Dockerfish-Tutorial
Install zpanel on linux server in 5 minutes
Jvm的最小使用内存测试
Surf iOS版 中文用户指南
Sayoo odoo open_erp
Cacti安装手册
MQTTS mosquitto - cheat sheet -
Instalando rrd tool-no-centos-5-usando-yum
Network
Ad

Viewers also liked (20)

PPSX
Cdocumentsandsettingssompong y-hosal04nbmydocumentsprincipleofsuccess-1008080...
PPTX
Prefix ber-
PPT
Caso ejemplo oftalmologia latenció primària
PDF
4 cas traumatismes oculars
PPTX
Toms Poetry Anthology
PPTX
Chapter 2 Objectives of Performance appraisal
PDF
Visual Resume
PPTX
Galeria
PDF
A0 ad276c eacf-6f38-e32efa1adf1e36cc
PDF
Magic submitter + addon 2012 برنامج
PPTX
PPTX
Performance Appraisal and its objectives by mahmood qasim
PDF
4.3 Cas 3 tema 4
PDF
Ijcta2011020338
PPTX
galeria de imagenes
PPT
системы счисления
PPTX
Performance Appraisal defined and tools Chapter -1
DOCX
Maila rosario colleg (technical writing)
PPTX
Adv420 final
Cdocumentsandsettingssompong y-hosal04nbmydocumentsprincipleofsuccess-1008080...
Prefix ber-
Caso ejemplo oftalmologia latenció primària
4 cas traumatismes oculars
Toms Poetry Anthology
Chapter 2 Objectives of Performance appraisal
Visual Resume
Galeria
A0 ad276c eacf-6f38-e32efa1adf1e36cc
Magic submitter + addon 2012 برنامج
Performance Appraisal and its objectives by mahmood qasim
4.3 Cas 3 tema 4
Ijcta2011020338
galeria de imagenes
системы счисления
Performance Appraisal defined and tools Chapter -1
Maila rosario colleg (technical writing)
Adv420 final
Ad

Recently uploaded (20)

PPTX
Anesthesia and it's stage with mnemonic and images
PPTX
Intro to ISO 9001 2015.pptx wareness raising
PPTX
Effective_Handling_Information_Presentation.pptx
PPTX
MERISTEMATIC TISSUES (MERISTEMS) PPT PUBLIC
DOCX
"Project Management: Ultimate Guide to Tools, Techniques, and Strategies (2025)"
PPTX
Tour Presentation Educational Activity.pptx
PPTX
Tablets And Capsule Preformulation Of Paracetamol
PPTX
INTERNATIONAL LABOUR ORAGNISATION PPT ON SOCIAL SCIENCE
PPTX
Hydrogel Based delivery Cancer Treatment
PPTX
nose tajweed for the arabic alphabets for the responsive
PPT
The Effect of Human Resource Management Practice on Organizational Performanc...
PPTX
fundraisepro pitch deck elegant and modern
PPT
First Aid Training Presentation Slides.ppt
PPTX
The Effect of Human Resource Management Practice on Organizational Performanc...
PPTX
Relationship Management Presentation In Banking.pptx
PPTX
2025-08-10 Joseph 02 (shared slides).pptx
PPTX
Human Mind & its character Characteristics
PPTX
Impressionism_PostImpressionism_Presentation.pptx
PPTX
Introduction-to-Food-Packaging-and-packaging -materials.pptx
PDF
Tunisia's Founding Father(s) Pitch-Deck 2022.pdf
Anesthesia and it's stage with mnemonic and images
Intro to ISO 9001 2015.pptx wareness raising
Effective_Handling_Information_Presentation.pptx
MERISTEMATIC TISSUES (MERISTEMS) PPT PUBLIC
"Project Management: Ultimate Guide to Tools, Techniques, and Strategies (2025)"
Tour Presentation Educational Activity.pptx
Tablets And Capsule Preformulation Of Paracetamol
INTERNATIONAL LABOUR ORAGNISATION PPT ON SOCIAL SCIENCE
Hydrogel Based delivery Cancer Treatment
nose tajweed for the arabic alphabets for the responsive
The Effect of Human Resource Management Practice on Organizational Performanc...
fundraisepro pitch deck elegant and modern
First Aid Training Presentation Slides.ppt
The Effect of Human Resource Management Practice on Organizational Performanc...
Relationship Management Presentation In Banking.pptx
2025-08-10 Joseph 02 (shared slides).pptx
Human Mind & its character Characteristics
Impressionism_PostImpressionism_Presentation.pptx
Introduction-to-Food-Packaging-and-packaging -materials.pptx
Tunisia's Founding Father(s) Pitch-Deck 2022.pdf

大家一起學Python