写点什么

第二十二周作业

作者:大肚皮狒狒
  • 2024-02-17
    湖北
  • 本文字数:651 字

    阅读完需:约 2 分钟

作业:

  1. 使用 Docker Desktop 搭建 Kubernetes 环境,并创建 K8s dashboard。

安装 Docker Desktop,下载 kubernetes

 


屏幕剪辑的捕获时间: 2024/2/15 11:35

 


打开面板

 


屏幕剪辑的捕获时间: 2024/2/17 9:33

 

输入 token 后打开 dashboard

 


  1. 安装 Python 基础环境和 PyCharm。

安装 python,安装 pyCharm

  1. 使用 Python 输出 2000 以内的斐波那契数列,对输出的数列进行翻转再去除首尾两个元素后取出次大数和最大数进行求和。

通过 PyCharm 创建 项目。定义函数 :

代码如下

# This is a sample Python script.
# Press Shift+F10 to execute it or replace it with your code.# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.


def fibonacci(n): if n == 0 or n == 1: return [1];
result = [1, 1] if n == 2: return result;
while True: current = result[-1] + result[-2];
if current > n: break;
result.append(current);
return result;


# Press the green button in the gutter to run the script.if __name__ == '__main__':

argument = 100 ;
fiboList = fibonacci(argument);
fiboList = fiboList[1:len(fiboList)-1];
fiboList.reverse();
s: int = 0; if fiboList is not None:
if len(fiboList)>= 1:
s = fiboList[0] ;
if len(fiboList) >=2: s = fiboList[1]+s;
print(s)
复制代码


用户头像

还未添加个人签名 2020-03-25 加入

还未添加个人简介

评论

发布
暂无评论
第二十二周作业_大肚皮狒狒_InfoQ写作社区