- Home
- Course Category
- Course Result
- Course Detail
Hot Line: 08377052947
-
TeacherManoj Sir
-
Category
Programming, Website Development
-
Duation
20 hours
-
Reviews(42 review)
-
Call Us for Details
Basic Python Course Questions
Python programming language is a general-purpose, dynamic programming Language.Python language have a large library of packages which makes python for beginners a language of choice.
Programs For Beginners
In the program below, we used the string comparison to (==) to find large string from input.
Source Code
:TAKE IN TWO STRINGS AND DISPLAY THE LARGER STRING WITHOUT USING BUILT-IN FUNCTIONS IN PYTHON
# PROGRAM TO TAKE IN TWO STRINGS AND DISPLAY THE LARGER STRING WITHOUT USING BUILT-IN FUNCTIONS
string1=input("Enter first string:")
string2=input("Enter second string:")
count1=0
count2=0
for i in string1:
count1=count1+1
for j in string2:
count2=count2+1
if(count1Output
Run the program to see the output