1 Star 0 Fork 0

mamh-mixed/python-cookbook

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
cloning_a_list.py 265 Bytes
Copy Edit Raw Blame History
ashish authored 2022-03-10 14:43 +08:00 . Renamed to python file and some refactoring
# Python program to copy or clone a list
# Using the Slice Operator
def Cloning(li1):
return li1[:]
# Driver Code
li1 = [
4,
8,
2,
10,
15,
18
]
li2 = Cloning(li1)
print("Original List:", li1)
print("After Cloning:", li2)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mamh-mixed/python-cookbook.git
git@gitee.com:mamh-mixed/python-cookbook.git
mamh-mixed
python-cookbook
python-cookbook
master

Search