Python

# vim op_log_file.py
#!/usr/bin/env python
#-*- coding: utf-8 -*-

import os,time

def opLogFun(log ...

Python

pythonコード
f = open(“demo.txt”)
line = f.readline()
while line:
print line,
# print(li ...

Python

pythonコード
class A(object):

def __method(self):
print(“Input a method in class A”)

def ...

Python

サンプルコード
#!/usr/bin/python

str = u”this2009″;
print str.isnumeric();

str = u”234 ...

Python

pythonコード
#!/usr/bin/python3

# ファイルのオープン
fo = open(“sample.txt”, “r+”)
prin ...

Python

pythonコード:
#!/usr/bin/python3

# ファイルのオープン
fo = open(“test.txt”, “r+”)
print ...

Python

①ディレクトリの作成
import os
os.mkdir(‘./11’)

②ディレクトリの削除
import os
os.rmdir(‘./11/22& ...

Python

1.strip()–先頭および末尾から「空白」と「改行」を削除
tt = ” Hello World\n”.strip()
print tt
結果
‘He ...

Python

例1
#!/usr/bin/env python
# -*- coding=utf-8 -*-
import re
text = ‘pythontab’
m = re.m ...

Python

1.pythonコード
#!/usr/bin/python3
import re

line = “Cats are smarter than dogs”

matchObj ...

Python

1.breakの使い方
for tt in range(12):
print tt
if tt == 5
break

2.continueの使い方
for tt in range(2 ...

Python

方法1 forループで配列の要素を取り出す
colors =
for color in colors:
print color

# red
# green
# blue

...

Python

pythonコード
#!/usr/bin/python
import re

line = “Cats are smarter than dogs”;

matchObj = ...

Python

Pythonコード
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
def del_files(path):
for root , dir ...

Python

Pythonコード
import os
def deleteFileFolder(src):
”’delete files and folders”’
i ...

Python

環境
PyCharm 2021.3
Python 3.9.7

構文
文字列
引数1の「開始位置」から引数2の「終了位置」の前にある文字を対象に「増分」の位置にある文字を返します。
最 ...

Python

pythonコード
import MySQLdb
conn = MySQLdb.connect(host=”172.17.2.200″,
user=”root”, ...

Python

Pythonコード
import sys, urllib2, urllib

zipcode = ‘xxx’
url = ‘
data = urllib.urlen ...