无需使用内置函数即可找到较大字符串的Python程序
给定两个字符串。任务是在不使用内置函数的情况下找到更大的字符串。
例子:
Input:
GeeksforGeeks
Geeks
Output:
GeeksforGeeks
Input:
GeeksForFeeks is an good Computer Coding Website
It offers several topics
Output:
GeeksForFeeks is an good Computer Coding Website
循序渐进的方法:
- 在单独的变量中取两个字符串。
- 将两个计数变量初始化为零。
- 使用 for 循环遍历字符中的字符串并在每次遇到字符时递增计数变量。
- 比较两个字符串的计数变量。
- 打印较大的字符串。
- 出口。
以下是基于上述方法的完整程序:
Python3
string1="GeeksForFeeks is an good Computer Coding Website "
string2="It offers several topics"
count1=0
count2=0
for i in string1:
count1=count1+1
for j in string2:
count2=count2+1
if(count1
输出
Larger string is:
GeeksForFeeks is an good Computer Coding Website
程序说明:
- 用户必须输入两个字符串并将其存储在单独的变量中。
- 计数变量初始化为零。
- for 循环用于遍历字符中的字符串。
- 每次遇到字符时,计数变量都会递增。
- 然后比较计数变量并打印较大的字符串。