You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
262 B
Python
8 lines
262 B
Python
1 year ago
|
# In this example, I use def to define the function name (names_of_fruits),
|
||
|
# the parameter is (fruits)and the argument is ("name of fruit is: % s" % fruits)
|
||
|
|
||
|
def names_of_fruits(fruits):
|
||
|
print("name of fruit is: % s" % fruits)
|
||
|
|
||
|
names_of_fruits('Apple')
|
||
|
|