212k views
0 votes
Write a function that accepts a string as an argument and returns true if the string ends with '.com'. Otherwise the function should return false.

Write in python.

2 Answers

3 votes

Answer:

Here's an example Python function that checks if a given string ends with '.com':

def ends_with_com(string):

if string.endswith('.com'):

return True

else:

return False

This function takes a string as an argument and uses the endswith() method to check if the string ends with the specified substring '.com'. If it does, the function returns True. If it doesn't, the function returns False.

User Jacob Honeyhume
by
7.1k points
5 votes

Answer:

Here's a Python function that checks if a given string ends with ".com" and returns a boolean value accordingly:

def ends_with_com(string):

if string[-4:] == '.com':

return True

else:

return False

The [-4:] syntax in string[-4:] returns the last four characters of the string, which should be ".com" if the string ends with it. The function then checks if the last four characters match ".com" and returns True if they do, and False otherwise.

User Adeniyi
by
7.9k points