You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

01_02.py 591 B

123456789101112131415
  1. #1.2 组合:有 1、2、3、4 个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
  2. #数字源
  3. num_list = [1,2,3,4]
  4. #不重复三位数列表
  5. three_digit_list = []
  6. for i in range(len(num_list)):
  7. for j in range(len(num_list)):
  8. for k in range(len(num_list)):
  9. #生成三位数
  10. three_digit = 100*num_list[i] + 10*num_list[j] + 1*num_list[k]
  11. # 更新三位数列表
  12. if three_digit not in three_digit_list:
  13. three_digit_list.append(three_digit)
  14. print(three_digit_list)

机器学习越来越多应用到飞行器、机器人等领域,其目的是利用计算机实现类似人类的智能,从而实现装备的智能化与无人化。本课程旨在引导学生掌握机器学习的基本知识、典型方法与技术,通过具体的应用案例激发学生对该学科的兴趣,鼓励学生能够从人工智能的角度来分析、解决飞行器、机器人所面临的问题和挑战。本课程主要内容包括Python编程基础,机器学习模型,无监督学习、监督学习、深度学习基础知识与实现,并学习如何利用机器学习解决实际问题,从而全面提升自我的《综合能力》。