Python

pythonコード:
class Deleter():
def __init__(self, ToPrint=True, Logger=None):
self.Logger = Logger
self. ...

Python

1.画像を表示
import matplotlib.pyplot as plt
import matplotlib.image as mpimg # mpimg
import numpy as np ...

Python

方法1
>>> import uuid
>>> node = uuid.getnode()
>>> mac = uuid.UUID(int=node) ...

Python

方法1
opfile=open(‘d:\\t’,’rb’)
s=opfile.read(1)
byte=ord(s)
print hex(byte) ...

Python

コード下記

import os, math
from base64 import b64encode
randStr = lambda n: b64encode(os.urandom(int(math.ce ...

Python

1.改行文字が1種類だけ(LF)
strTarget = ‘JPY\nUSA\nRMB’
print(strTarget)
print(strTarget.replace(‘ ...

Python

1.readline()
file = open(“startnews24python.txt”)
while 1:
line = file.readline()
if not ...

Python

1.TimeStampをDatetimeに変換する
def timestamp2datetime(timestamp, convert_to_local=False):
”’ Converts ...

Python

コード下記
import time
def start_sleep():
time.sleep(3)
if __name__ == ‘__main__’:
#The st ...

Python

コード下記:

import datetime, calendar

lastFriday = datetime.date.today( )
oneday = datetime.timedelta(days ...

Python

構文
文字列リテラル’…’, “…”の前にrまたはRをつけ、エスケープシーケンスを展開せずそのままの値が文字列となります。
サンプルコード ...

Python

コード下記
#-*-coding:utf-8-*-
import datetime
def getYesterday(): #
today=datetime.date.today()
oneda ...

Python

#繰返し処理1
names =
for name in names:
print name

# 繰返し処理2
for x in :
print x

#繰返し処理3 ...

Python

1.pythonのインスントール
#!/bin/bash
#ソースパッケージのインスントール
wget
tar -zxvf Python-2.7.9.tgz
cd Python-2.7.9 ...

Python

Javaコード:
import os
import mysql.connector

config = {
‘user’: ‘root’,
&# ...

Python

例1:
with open(“filename”) as f:
f.read()

例2
class closing(object):
def __init__(self, thing): ...

Python

Pythonコード:
# -*- coding:utf-8 -*-

import os
import pyinotify
from functions import *

WATCH_PA ...

Python

サンプルコード:
#!/usr/bin/env python
#coding=utf-8
#ChooseSort.py
#user can choose sort style: desc(1) or a ...