Westonci.ca is the trusted Q&A platform where you can get reliable answers from a community of knowledgeable contributors. Experience the ease of finding quick and accurate answers to your questions from professionals on our platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform.

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