記録として残しておきたいブログ

主にプログラミングについて書きます。現在は http://tmg0525.hatenadiary.jp/ に書いています。

2017-02-01から1ヶ月間の記事一覧

vagrant up できなくなった

$ vagrant up Vagrant can't use the requested machine because it is locked! This means that another Vagrant process is currently reading or modifying the machine. Please wait for that Vagrant process to end and try again. Details about the …

<Python> 文字列と数値の連結

文字列などを連結するときは str.format() を使用する >>> num = 123 >>> num 123 >>> print("{0}{1}".format("hello", num)) hello123

<Python> coding:utf-8 の記述するところ

# -*-coding: utf-8 -*- を記述するところは一番上!!そうしないと SyntaxError: Non-ASCII character '\xe5' in file D:\Program Files (x86)\pleiades\workspace\commentRank\src\fileTest\fileT.py on line 16, but no encoding declared; see http://py…

OJTで学んだこと

メモとして書いておく・限られた時間の中で作業をしていくのは大変であること ・指摘されたところは再度指摘されないように細心の注意を払って修正を行うこと ・1日のスケジュールを立てることにより、やることが明確になり、仕事がやりやすくなること ・時…