Write a Python program to calculate the length of a string
- برمجة
- برمجة بايثون
- 2021-04-15
- salsabeelalhams99111801528
الأجوبة
def string_length(str1):
count = 0
for char in str1:
count += 1
return count
print(string_length('w3resource.com'))أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال