Discover the answers you need at Westonci.ca, where experts provide clear and concise information on various topics. Discover comprehensive solutions to your questions from a wide network of experts on our user-friendly platform. Get quick and reliable solutions to your questions from a community of experienced experts on our 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