how to insert string in list python code example
Example: how to add a new element to a list in python
#!/usr/bin/env python
# simple.py
nums = [1, 2, 3, 4, 5]
nums.append(6)
#!/usr/bin/env python
# simple.py
nums = [1, 2, 3, 4, 5]
nums.append(6)