From d91404dc6974d037cce3f594df0ed791a10d46f2 Mon Sep 17 00:00:00 2001 From: Satwik Kansal Date: Fri, 1 Sep 2017 04:32:03 +0530 Subject: [PATCH] Fix typo Changes 0 to 0.0 in the output of explicit string typecasting example. Fixes https://github.com/satwikkansal/wtfPython/issues/13 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6df25df..93e5f8a 100755 --- a/README.md +++ b/README.md @@ -1175,7 +1175,7 @@ True >>> b == d #but nan!=nan False >>> 50/a -0 +0.0 >>> a/a nan >>> 23 + b