Python

書式
iter(配列名)
使用例

cft = ("A001", "BB02", "CC03","DD04")res = iter(cft)print(next(res))print(next(res))print ...

Python

使用例

str = "Study skill in arkgame"print(str)print(str)

実行結果
u
d

Python

書式
iter(文字列)
使用例

cft = "arkgame"res = iter(cft)//要素を最初から順番に取り出すprint(next(res))print(next(res))print(next( ...

Python

1.インストール
yum install iotop
2.iotop
Total DISK READ: 0.00 B/s | Total DISK WRITE: 0.00 B/s
TID PRIO US ...

Python

構文
数値 % 2
2で割った余りで判定
サンプルコード

# coding: utf-8#!/usr/bin/python3 num = int(input("数値を入力してください: "))if (nu ...

Python

pythonコード:
import sqlite3
mysqldb=sqlite3.connect(r”C:\Users\Administrator\Desktop\startnews24_sqlite.d ...

Python

構文
for 文字変数名 in 文字列:
使用例

# coding: utf-8str = 'testdata'print("for文で1文字ずつ取得するサンプル")for s in str: print (s) ...

Python

サンプルコード

# coding: utf-8#!/usr/bin/python3 year = int(input("年を入力してください: "))if (year % 4) == 0: if (year % 100) == ...

Python

書式
def 関数A():
def関数B():
使用例

#関数の定義def testfunc(): x = 345 #内部関数 def testinnerfunc(): print("value is: ...

Python

pythonコード:

#!/usr/bin/python
#coding=utf-8

from BaseHTTPServer import HTTPServer,BaseHTTPRequestHandl ...

Python

1.時間文字列をタイムスタンプに変換される
方法:
a = “2013-10-10 23:40:00”
時間配列に変換
import time
timeArray = t ...

Python

1.時間文字列をタイムスタンプに変換される
方法:
a = “2013-10-10 23:40:00”
時間配列に変換
import time
timeArray = t ...

Python

説明
calendar.isleap(year)
year が閏年なら True を、そうでなければ False を返します。
サンプルコード

# coding: utf-8#!/usr/bin/pyth ...

Python

書式
if(条件式)
break
使用例

n = 1while n < 7: print(n) if (n == 3): break n += 1

結果
1
2
3 ...

Python

構文
class int(x, base=10)
x が数値でない、あるいは base が与えられた場合、 x は文字列、 bytes インスタンス、 bytearray インスタンスのいずれかで、基数 base の ...

Python

str1 = ‘changfa’
str2 = ‘dengbu’

bb = 345
cc = 0.63

サンプル1
str()で数値を文字 ...

Python

1.ファイル名test.txt
111 222
aaa bbb

2.ファイルを読み込む
f = open(“test.txt”, “r”) ...

Python

構文
辞書名「キー」
使用例

# coding: utf-8#!/usr/bin/python3 dt = {'Name': 'Arkgame', 'Age': 12, 'Class': 'First111'} ...