Westonci.ca offers fast, accurate answers to your questions. Join our community and get the insights you need now. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently.

codes 7.2.8: Listed Greeting python
pls help i have no idea on how to fix this


Codes 728 Listed Greeting Python Pls Help I Have No Idea On How To Fix This class=

Sagot :

The listed greetings program is an illustration of Python functions.

The error in the program is that the program is not properly indented.

Python program uses indents to identify blocks of code.

So, the fix to the program is to properly indent the code, and the fix (without the comments) is as follows:

def greetings(s):

   x = s.split()

   print("Hello, "+x[0]+"! I also enjoy "+x[1]+"!")

Read more about Python programs at:

https://brainly.com/question/16240699