Skip to content

Commit e45b91f

Browse files
Caleb CurryCaleb Curry
Caleb Curry
authored and
Caleb Curry
committed
darn u java
1 parent e7e1736 commit e45b91f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beginner_python/10-functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def greet(name, be_nice=True):
264264
#We can utilize it.
265265
def greet_all(people):
266266
for person in people:
267-
print(greet(person)) //because it returns string
267+
print(greet(person)) #because it returns string
268268

269269
people_to_greet = ["Johnny", "Jimmy", "Jacob"]
270270
greet_all(people_to_greet)

0 commit comments

Comments
 (0)