Pythonの基本

変数とタイプ

a=1 #変数aは整数です
t007='T007” #変数t007は文字列です
  1. メモリに「ABC」の文字列を作成します
  2. メモリ内にaという名前の変数を作成し、それを「ABC」にポイントします

識別子とキーワード##

Pythonいくつかの識別子と特別な機能、これらはいわゆるキーワードです
キーワードはすでにpythonで使用されているため、開発者はキーワードと同じ名前で識別子を定義することはできません。

>>> import keyword #まずキーワードパッケージをご紹介します
>>> keyword.kwlist #キーワードを見る
and     as      assert    breakclasscontinue    def     del
elif    else    except    exec    finallyforfrom    global
ifinimport    is      lambda     not         or      pass
print   raise   returntrywhilewithyield

出力##

# 通常の出力
a=10print("これは変数です",a)

# フォーマットされた出力
age=20
name="シャオチャン"print("彼の年齢は%d歳"%age)print("彼の名前は%s、国籍は%s"%(name,"中国"))

運用結果

その他の出力フォーマット##

print("aaa","bbb","ccc")print("www","baidu","com",sep=".")

結果:

print("hello",end="") #改行なし
print("world",end="\t") #次の出力の前のタブ
print("python",end="\n") #ラップ
print("end")

結果:

入る##

password =input("パスワードを入力してください:") #キーボード入力
print("入力したパスワードは次のとおりです。",password)print("キーボードで入力する数字の種類は次のとおりです。",type(password)) #キーボード入力は文字列タイプです

password_2 =int(password) #intタイプにキャスト
print("強制後のタイプは次のとおりです。",type(password_2))

結果:

Recommended Posts

Pythonの基本
Pythonの基本
Pythonの基本3
Pythonの基本4
Pythonの基本5
Pythonオブジェクト指向の基本
Pythonカスタム関数の基本
Python構文の基本
Pythonマルチプロセスおよびマルチスレッドの基本
Pythonマルチスレッド
Python CookBook
Python FAQ
Python3辞書
Python3モジュール
python(you-get)
Python文字列
Python記述子
Python exec
Pythonノート
CentOS + Python3.6 +
Python Advanced(1)
Pythonデコレータ
Python IO
Pythonマルチスレッド
Python3リスト
Pythonマルチタスク-日常
pythonの紹介
07.Python3関数
Pythonマルチタスクスレッド
Python関数
python sys.stdout
python演算子
Pythonエントリ-3
Centos 7.5 python3.6
Python文字列
pythonキューキュー
pythonインタラクティブモードの基本を学ぶ
Centos6はPython2.7.13をインストールします
Pythonは質問に答えます
Pythonの基本構文(1)
Centos7はPython3.6をインストールします。
ubuntu18.04インストールpython2
Pythonの古典的なアルゴリズム
ubuntuを再学習します--python3
Python2.7 [インストールチュートリアル]
Python文字列操作
Python 3.9が登場!
Python研究ノート(1)
python学習ルート
CentOS7アップグレードpython3
Python3の基本構文
linux + ubuntuはpythonを解決します
pythonの関数
Python学習変数タイプ
CentOSはPython3.6をインストールします
Python3.9の7つの機能
Pythonファイル操作
ubuntu12.04インストールpython3
Pythonのデザインパターン
Python-centos6のインストール
Centos7はPython2.7をインストールします