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

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

2017-02-26から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