From 16f377a2efdc0f82f6bb3c28be01b62375acaaae Mon Sep 17 00:00:00 2001 From: Captain ALM Date: Wed, 30 Nov 2022 17:04:13 +0000 Subject: [PATCH] Test \!check for substring (x in y). --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index dec2a9c..5597c22 100644 --- a/main.py +++ b/main.py @@ -6,7 +6,7 @@ c = 'world hello!' d = '''world hello!''' e = "!" -print("!" in a) -print(e in b) -print("!" in c) -print(e in d) +print("!" not in a) +print(e not in b) +print("!" not in c) +print(e not in d)