InterviewSolution
Saved Bookmarks
| 1. |
Describe isdecimal( ) with example. |
|
Answer» The method isdecimal( ) checks whether the string consists of only decimal characters. This method is present only on Unicode objects. Note : To define a string as Unicode, one simply prefixes a ‘u’ to the opening quotation mark of the assignment. Below is the example. Syntax : Following is the syntax for isdecimal( ) method : str.isdecimal( ) |
|