Article Outline
Python example 'python-example-74'
python-example-74
Python example: python-example-74
#!/usr/bin/python
# -*- coding: UTF-8 -*-
if __name__ == '__main__':
arr1 = (3,12,8,9,11)
ptr = list(arr1)
print(ptr)
ptr.sort()
print(ptr)
Useful links
- Learn Python: https://pythonbasics.org/
- More Python: https://pythonprogramminglanguage.com