At Westonci.ca, we provide reliable answers to your questions from a community of experts. Start exploring today! Join our Q&A platform and connect with professionals ready to provide precise answers to your questions in various areas. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

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