list = ["other str", 2, 56]
list.append("string")
# list = ["other str", 2, 56, "string"]
#!/usr/bin/python
msg = ' '.join(['There', 'are', 'three', 'eagles', 'in', 'the', 'sky'])
print(msg)
# Appending String to list
# using + operator + list conversion
list += [test_str]