shenggong
shenggong
全部文章
分类
题解(49)
归档
标签
去牛客网
登录
/
注册
shenggong的博客
全部文章
(共5篇)
题解 | #密码游戏#
number = input() list = [] for i in range(len(number)): b = (int(number[i])+3)%9 list.append(b) list[0],list[2] = list[2],...
Python3
2022-07-03
4
0
题解 | #查看鸢尾花数据基本特征#
import pandas as pd iris = pd.read_csv('iris.csv',sep=',') # code here print(iris.head()) # code here print(iris.shape) # code here print(iris.dtypes....
Python3
2022-06-30
0
222
题解 | #幸运数字的大小#
a = int(input()) b = int(input()) c = int(input()) list = [] list.append(a) list.append(b) list.append(c) list.sort() print(list[0]) print(list)
Python3
2022-06-28
0
0
题解 | #单词造句#
str = input() list = str.split(',') print(list) print(' '.join(list))
Python3
2022-06-20
0
259
题解 | #遍历字典#
operators_dict={'<': 'less than','==': 'equal'} print('Here is the original dict:') for k,v in sorted(operators_dict.items()): print(...
Python3
2022-06-02
12
607