#简单购物车程序:money_all=0tag=Trueshop_car=[]shop_info={'apple':10,'tesla':100000,'mac':3000,'lenovo':30000,'chicken':10,}while tag: for k,v in shop_info.items(): print('商品名:{name}价格:{price}'.format(name=k,price=v)) goods=input('请输入你要买的商品:').strip() if len…
前言:本笔记仅记录学习记录,可能存在错误!!!使用的环境是Ubuntu Desktop 20.04,也有用Windows 10 操作的,根据的文档是minikube的文档教程,链接:https://minikube.sigs.k8s.io/docs/start/ ,使用此文档教程之前请确保已经安装了容器引擎,如Docker,并且要确保CPU核心数是双核及以上,不然会报错"the number of available CPUs 1 is less than the required 2"…