The program could be written using a python script.
<h3>Python script on string operation</h3>
The program takes a string as an input. First, declare a variable for the input:
var = str()
#The above code will ask for a string to be inputted
Next would be to condition the script in a particular direction using the 'if' statement. That is, a Boolean function.
if var ==('chicken'):
#The above code will compare the inputted string to the word 'chicken'.
print("This is equal")
#The screen will display 'This is equal' if the inputted stringis the same as 'chicken'.
else:
print("This is not equal")
#The screen will display "This is not equal" if the inputted string is not the same as 'chicken'.
In summary, the code goes thus:
var = str()
if var ==('chicken'):
print("This is equal")
else:
print("This is not equal")
More on python scripts can be found here: brainly.com/question/14378173
#SPJ1