From 86715d646e5991c0d09d3e6eaeb15e7fefe1962f Mon Sep 17 00:00:00 2001 From: Satwik Kansal Date: Fri, 1 Sep 2017 13:52:18 +0530 Subject: [PATCH] Add statement in output Adds None==None statement in explicit string casting example. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 53cfb78..30cbcf1 100755 --- a/README.md +++ b/README.md @@ -1177,6 +1177,8 @@ nan ValueError: could not convert string to float: some_other_string >>> a == -c #inf==inf True +>>> None == None # None==None +True >>> b == d #but nan!=nan False >>> 50/a