تابعی بنویسید که یک متن را در ورودی بگیرد و تعداد حروف الفبا و اعداد موجود در متن را محاسبه کند.
نمونه ورودی و خروجی
CountAll("Hello World") ➞ {'alphabet': 10, 'number': 0}
CountAll("H3ll0 Wor1d") ➞ {'alphabet': 7, 'number': 3}
CountAll("149990") ➞ {'alphabet': 0, 'number': 6}
CountAll("Hello World") ➞ {'alphabet': 10, 'number': 0}
CountAll("H3ll0 Wor1d") ➞ {'alphabet': 7, 'number': 3}
CountAll("149990") ➞ {'alphabet': 0, 'number': 6}
نظرات