From 41c642fef635c8d6b9357cce60c739d040db5414 Mon Sep 17 00:00:00 2001 From: Isha307 <56998032+Isha307@users.noreply.github.com> Date: Tue, 2 Mar 2021 12:22:57 +0530 Subject: [PATCH] Update 2-Python List,Dictionary,Sets etc.ipynb --- .../2-Python List,Dictionary,Sets etc.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Section 1- Python Crash Course/2-Python List,Dictionary,Sets etc.ipynb b/Section 1- Python Crash Course/2-Python List,Dictionary,Sets etc.ipynb index 4c4e2ae..7d03d70 100644 --- a/Section 1- Python Crash Course/2-Python List,Dictionary,Sets etc.ipynb +++ b/Section 1- Python Crash Course/2-Python List,Dictionary,Sets etc.ipynb @@ -164,7 +164,7 @@ } ], "source": [ - "print(my_str.isalnum()) #check if all char are numbers\n", + "print(my_str.isalnum()) #check if all char are numbers or alphabets\n", "print(my_str.isalpha()) #check if all char in the string are alphabetic\n", "print(my_str.isdigit()) #test if string contains digits\n", "print(my_str.istitle()) #test if string contains title words\n",