9 lines
		
	
	
		
			215 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			215 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Add your name to this list!
 | 
						|
names = ["Livia", "James"]
 | 
						|
 | 
						|
# When you run this code (python3 say_hello.py)
 | 
						|
# It will say hello to everyone who has added their name!
 | 
						|
for name in names:
 | 
						|
    print("Hello", name + "!")
 | 
						|
 |