Python速成ノート^一
2479 ワード
1.文字列の操作 print()出力ウィンドウにいくつかのテキスト が表示されます.*5は、 を5回印刷します.''はご飯のスラッシュ()を使って文字の変換をしてLet's goを打つ以外に! 元の文字列rは表記後の文字列をそのまま出力するが、末尾が「はい」であることに注意し、単一引用符で囲まなければ である.文字列回転int float str データ型の関数type()isinstance()を表示前のパラメータ型が後に作成された型であるかどうかを表示する
2.一般的なオペレータ pythonの算術オペレータ 演算子の優先度 論理演算子
3.分岐と循環 pythonにおけるif else ifの書き方 pythonにおけるリストの定義(javaとの配列)およびforループの書き方 range()関数 pythonのbrakeとcontinue
print("I love ")
print('I love ' * 5)
print('Let\'s go!')
print("Let's go!")
print(r"Let's go!\\\\\\\\\'")
print(r"Let's go!'\\\\\\\\\'")
c = int("19")
c = float("19")
c = str("19")
c = float("19")
type(c)
c
19.0
c = " "
isinstance(c,str)
True
2.一般的なオペレータ
+ - * / % ** //
/ : 4/3=1.3333333333333333333333333
// : 4//3=1
** : -3**2=-9 -(3*3)=-9
**
-X +X
+ - * / //
> < >= <= != ==
and or not
and : false and true ->fale
or : false and true ->true
not :not not 0 ->true not 1 ->false python 0 false false true 0 true
3.分岐と循環
if count >100:
print("A")
elif 100 > count >90:
print("B")
# coding=gbk( )
'''
for
for
'''
store = [" : ", " : ", " : ", " : , , , !",
" : . ! ", " : ",
" : , ", " : !", " : "]
for each in store:
print(each, len(each))
'''
range( , , )
: ( )
:
:
: 1 1 2 2
'''
for each in range(5):
print(each)
for each in range(2,9):
print(each)
for each in range(882,1115,5):
print(each)
java ,brake ,continue