mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-11-01 12:17:47 +00:00
6 lines
104 B
Python
6 lines
104 B
Python
#!usr/bin/python3
|
|
|
|
me = ['hello', 'everyone', 'i am', 'Ahmad Ilham']
|
|
for i in me:
|
|
print(i, end=" ")
|