We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a70a1ad commit 7505be1Copy full SHA for 7505be1
README.md
@@ -432,7 +432,20 @@ Then, the output should be:
432
433
**Solution:**
434
```python
435
-code
436
-here we will write code
+def prog_9():
+ # x = input()
437
+ x = "add230"
438
+ int_n = 0
439
+ str_n = 0
440
+
441
+ for a in x:
442
+ if a.isalpha():
443
+ str_n +=1
444
+ else:
445
+ int_n +=1
446
+ print("LETTERS: " + str(str_n))
447
+ print("DIGITS: " + str(int_n))
448
+ return
449
+prog_9()
450
```
451
* * *
0 commit comments