服务机器人专项赛可以称为家庭服务机器人团队的嘉年华,参赛团队和竞赛项目的主体都是家庭服务,赛项涉及GPSR、WhoIsWho、Shopping等经典赛项,也包括人的辨识、物体辨识、路径规划、Follow等子赛项,家庭服务实体项目共13个,另有仿真项目4个。此次比赛我报名5个项目,4个项目的报名顺序位 ...
分类:
其他好文 时间:
2018-05-18 15:33:15
阅读次数:
957
#My python code product_list =[("iphone,5800"), ("Mac pro,9800"), ("coffee,58"), ("Ibook,50"), ("watch,10800"), ("bike,800"), ] shopping_list = [] sal ...
分类:
其他好文 时间:
2018-05-10 20:22:02
阅读次数:
147
终端起别名: 终端快速打开项目 打开终端 /* touch ~/.bash_profile vim ~/.bash_profile alias mall="open 项目路径/xxxx.xcworkspace/" */ 退出保存 然后 source .bashrc 使其生效</span> 退出保存 ...
分类:
其他好文 时间:
2018-05-09 19:39:28
阅读次数:
127
product_list = [ ("Aphone", 5000), ("Watch",1000), ("Book", 100), ("Food", 50),]shopping_list = []salary = input("Input of your salary:")if salary.isd ...
分类:
其他好文 时间:
2018-05-02 19:05:56
阅读次数:
142
product_list=[("Iphohe",5800),("Mac Pro Book",12900), ("xiaomi 4c",1200),("Alex python",120), ("Bike",800)]shopping_list=[]salary=input("input your sa ...
分类:
其他好文 时间:
2018-05-01 15:19:36
阅读次数:
135
products = [ #定义商品列表 ["Ipone",5800], ["Mac",15800], ["Coffee",30], ["Bike",2000], ["Cloth",500], ] shopping_list = [] #空的购物车 while True: ... ...
分类:
其他好文 时间:
2018-04-27 15:42:33
阅读次数:
132
print('欢迎访问购物车')money = int(input('为方便购物,请输入您的总资产:')) #输入金钱必须为数字类型shopping_price_list = [{"name": "电脑", "price": 1000} , {"name": "鼠标", "price": 10}, ...
分类:
其他好文 时间:
2018-04-26 21:10:47
阅读次数:
118
Charm Bracelet Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 45191 Accepted: 19318 Description Bessie has gone to the mall's jewelry stor ...
分类:
其他好文 时间:
2018-04-25 17:04:22
阅读次数:
131
salary = int(input("please input your salary:")) shopping_car = [] Commodity_shelves = [["iphone",5800],["macbookpro",12000],["starbuck_latte",30],["A ...
分类:
其他好文 时间:
2018-04-25 10:53:23
阅读次数:
155