1.import 模組名 [as 別名]
使用時:模組名.物件名
>>
>
import math
>>
>math.sin(
0.5)
2.from 模組名 import 物件名[as 別名]
使用時:不需要模組名做字首。
>>
>
from math import sin
>>
>sin(
0.5)
import random
a=random.randint(1,
10)print
(a)
>>
>
import keyword
>>
>keyword.kwlist
a,b,c=
map(
int,
input()
.split())
#這種方式輸入了3個int型的數字,split()代表以空格隔開
1.使用%
就是將c語言中print("%d",x);中的「,」換成是「%」就行
2.字串的format方法
-順序填坑:{}-坑 『名字是:{},年齡是:{}』.format(『tom』,16,170)
-下標填坑:『名字是:,年齡是:』.format(『tom』,16,170)
-變數填坑:『名字是:,年齡是:』.format(name =『tom』,age = 16)
Python 零散知識
1.set 集合 2.格式化字串時 可以使用 元組 eg info zhangsan 18 print s 年齡是 d info 3.zip的 使用方法 a 1,2,3 b 4,5,6 c 4,5,6,7,8 zipped zip a,b 打包為元組的列表 1,4 2,5 3,6 zip a,c 元...
python零散知識點
請看如下知識 python為string物件提供了轉換大小寫的方法 upper 和 lower 還不止這些,python還為我們提供了首字母大寫,其餘小寫的capitalize 方法,以及所有單詞首字母大寫,其餘小寫的title 方法。a hello everyone a hello everyon...
Python學習零散雜記(2017 10 27)
01.函式 int 將數字的字串表示轉換為數值表示。age int age 02.如果乙個數可被另乙個數整除,餘數就為0,因此求模運算子將返回0。你可利用這一點來判斷乙個數是奇數還是偶數.03.如果你使用的是python 2.7,請使用raw input 而不是input 來獲取輸入。04.使用br...