python學習筆記三

2021-06-27 04:28:11 字數 446 閱讀 1269

一、輸出:

print的幾種用法:

print 」hello world「     -->hello world中間有空格

print "hello""wolrd"    -->helloworld 中間沒有空格

print "hello"    "wolrd"    -->helloworld 中間沒有空格

print "hello","world"       -->hello world中間有空格

print 100 + 200  -->300

print "100 + 200 = " 100+200 -->100 + 200 = 300

二、輸入:

raw_input的用法:

raw_input([strprompt])  可選是否有提示內容,返回值為使用者輸入

var = raw_input("請輸入:")

python學習筆記(三)

python的序列 列表,元組,字串都是列表,列表的主要特點是索引和切片操作 序列的基本操作 1.len 求序列的長度 2.連線兩個序列 3.重複序列元素 4.in判斷序列是否在元組中 5.max 返回最大值 6.min 返回最小值 7.cmp tup1,tup2 比較兩個序列的值 元組 元組和字串...

python學習筆記(三)

list也可以直接做加法 a 1,2 a 3 a 1,2,3 lambda用來定義匿名函式 lambda x x 2.0 lambda x x 2.0 平方是用 student torture不理解 for可以各種巢狀 ppl alice bob carol doug excited ppl e f...

Python學習筆記(三)

將 py檔案變為可執行檔案的方法 usr bin env python 條件判斷 if age 18 print adult else print teenager 具有相同縮排的 被視為 塊。if 語句後接表示式,然後用 表示 塊開始。elif 意思就是 else if if age 18 pri...