```
import random
list=[1,2,3,4]
a = ''
if list:
a = random.choice(list)
else:
a ='不能为空'
print(a)
```
```
import random
list1=[1,2,3,4]
a = ''
if list1:
a = random.shuffle(list1)
else:
a ='不能为空'
print(a)
print(list1)
```
```
import random
list1=[1,2,3,4]
a = ''
list2 = list1
if list1:
a = random.shuffle(list2)
else:
a ='不能为空'
print(a)
print(list1)
print(list2)
```
```
import random
list1=[1,2,3,4]
a = ''
list2 = list1.copy()
if list1:
a = random.shuffle(list2)
else:
a ='不能为空'
print(a)
print(list1)
print(list2)
```
```
import random
list1=[1,2,3,[1,2,3,[1,2,3,{'a':4}]]]
a = ''
list2 = list1.copy()
if list1:
a = random.shuffle(list2)
else:
a ='不能为空'
print(a)
print(list1)
print(list2)
```
```
import random
str1 = 'abcd'
list1=[1,2,3,[1,2,3,[1,2,3,{'a':4}]]]
a = ''
str2 = str1
list2 = list1.copy()
if list1:
a = random.shuffle(list2)
str2 = str2[::-1]
else:
a ='不能为空'
print(a)
#print(s)
print(str1)
print(str2)
print(list1)
print(list2)
```
- py转exe
- py服务器
- py登录
- py查询
- 爬TB热卖1017
- 爬TB分类1015
- 爬BD文库1010
- 爬文库924
- json917
- decode912
- 转码910
- radians829
- turtle827
- 画叶子820
- 树干815
- Turtle, mainloop718
- sorted716
- random711
- turtle.colormode709
- abs704
- begin_fill702
- randint,random627
- isalpha625
- keyword620
- compile618
- judge613
- list1.copy611
- random.choice606
- format_randint604
- save_csv528
- jieba523
- wordcloud521
- wordcloud516
- jieba.lcut514
- counts503
- format423
- 花瓣418
- strftime416
- turtle.fillcolor411
- random.random409
- pensize404
- 花蕊328
- input327
- eval_float320
- open319
- while314
- JCR影响因子313
- _to_chinese4_312
- encoding306
- read305
- flask1029