【MSLearn 学习模块】Hi ! ⼀起来学Python

随着大数据、人工智能、物联网的兴起,Python越来越受到大家的关注。不论你是⼀位学生,是一位传统的码农,还是非计算机领域的从业人员都离不开Python。当然大家的角度不⼀样,作为学生是以学为主,码农是以用为主,非计算机领域的主要是以了解为主。我们通过互联网可以找到很多学习Python的资料,有传统的文档,有技术博客,有培训机构的课程。如何系统性地把Python基础,Python后端开发,Python 在机器学习领域和大数据领域的应用学好是⼀个漫长的过程,而且很难在一个平台上学习好所有的应用。

Microsoft Learn

(https://docs.microsoft.com/en-us/learn/) 

是微软提供的⼀个学习计算机编程语言、云原生技术、案例应用的免费学习平台。通过该平台,你可以通过学习路径(Learning Path) 或模块(Module)系统性地学习最前沿的计算机应用技术。在Microsoft Learn下如何学习Python?这里我有不错的学习路径(Learning Path)推荐给大家。

STEP 1

学习Python第一步

学习Python的第一步是认识Python语言,作为初学者你需要学习Python的语言特性,通俗点说就是语法堂,通过学习路径你可以按部就班地用最简短方式学习Python语法。

如果你希望学习该模块,请扫描以下⼆维码,或用浏览器输入网址(https://aka.ms/Python01)进行学习

STEP 2

学习Python第二步

后端开发经历了整个互联网时代,通过框架,你可以构建自己的页面,也可以构建企业应用,在现代互联网上,你更多是构建接口为前端产生数据。在Python里面主流有Flask和Django的不同后端框架,在MS Learn上也提供了针对这两种框架的学习内容,其中Django学习用学习路径方式呈现,Flask学习以模块的形式呈现,而且结合了云端场景做实例,非常适合大家的Python后端应用学习。

如果你希望学习Django模块,请扫描以下⼆维码,或用浏览器输入网址(https://aka.ms/django01)进行学习

如果你希望学习Flask模块,请扫描以下⼆维码,或用浏览器输入网址(https://aka.ms/flask01)进行学习

STEP 3

学习Python第三步

Python更常用的场景是在机器学习,要进入机器学习领域,MS  Learn为大家提供了非常完整的学习路径,你可以从基本概念,到常⽤算法,再到深度学习,还配有练习环境以及案例教学,让你从零开始学习相关的机器学习知识。

如果你希望学习该模块,请扫描以下二维码,或用浏览器输入网址(https://aka.ms/ml01)进行学习

通过MS  Learn你可以通过以上推荐快速学习Python相关的知识,掌握⼀定的应用技巧。如果你准备投身到Python技术栈或者认识Python的场景应用,都不要错过!

课程导读

本次课程,我也做了相关的导读,大家可以通过b站视频观看,作为在MS Learn 学习Python的知识补充。

bilibili 观看地址 https://b23.tv/jLxeEI

bilibili 观看地址 https://b23.tv/YB41ra

bilibili 观看地址 https://b23.tv/73rAGm

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Chapter 2 Magic coins example. magic_coins1.py Chapter 3 Favourite sports. favourite_sports.py Furniture placeholder. furniture_placeholder.py A list of lists. list_of_lists.py A letter from Malcolm Dithering dithering_letter.py Escaping quotes quote_escaping.py The Wizard List wizard_list.py Chapter 4 The turtle draws a square. turtle1.py The turtle draws two parallel lines. turtle2.py Chapter 5 If statements if_statements.py Conditions in if-statements. conditions.py Else-if (elif) statements. elif_statements.py Strings and numbers. strings_and_numbers.py Chapter 6 Five Hellos. five_hellos.py Huge hairy pants (example 1). huge_hairy_pants1.py Huge hairy pants (example 2). huge_hairy_pants2.py Magic coins (example 2). magic_coins2.py A while-loop with multiple conditions. while_loop_multiple_conditions.py Looping through the wizard list. wizard_list_loop.py Chapter 7 A function to calculate your savings. savings.py Building a spaceship. spaceship_building.py Test function (example 1). test_function1.py Test function (example 2). test_function2.py Your age function. your_age.py Chapter 8 Giraffes (example 1). giraffes1.py Giraffes (example 2). giraffes2.py Three turtles. three_turtles.py Chapter 9 Using the abs (absolute) function. abs_function.py Using the exec (execute) function. exec_function.py Using the len (length) function. len_function.py Using the max and min functions. max_and_min.py Using the range function. range_function.py Using the sum function. range_function.py Opening a file. opening_a_file.py Writing to a file. writing_to_a_file.py Chapter 10 Copying objects (example 1). copying_objects1.py Copying objects (example 2). copying_objects1.py Guess a random number. guess_a_number.py Random desserts. random_desserts.py Using the time module. timing_lots_of_numbers.py Using pickle to save information. pickle_saving.py Using pickle to load information. pickle_loading.py Chapter 11 Drawing an eight point star. eight_point_star.py Drawing a many point star. many_point_star.py Drawing a spiral star. spiral_star.py Drawing a nine point star. nine_point_star.py Drawing a car. car.py Drawing a yellow circle. yellow_circle.py Drawing a filled green circle. green_circle.py Drawing a dark-green circle. dark_green_circle.py Drawing squares using a function. square_function.py Drawing filled and unfilled squares. filled_squares.py Drawing stars using a function. star_function.py Chapter 12 Clickable button (example 1). clickable_button1.py Clickable button (example 2). clickable_button2.py Drawing a diagonal line. diagonal_line.py Drawing a square. square.py Drawing a horizontal rectangle. horizonal_rectangle.py Drawing a vertical rectangle. horizonal_rectangle.py Drawing random rectangles. random_rectangles.py Drawing coloured rectangles. coloured_rectangles.py Using the color chooser. rectangle_colorchooser.py Drawing arcs. drawing_arcs.py Drawing polygons. drawing_polygons.py Drawing text. drawing_text.py Drawing images. drawing_images.py Basic animation (example 1). basic_animation1.py Basic animation (example 2). basic_animation2.py Using events (example 1). using_events1.py Using events (example 2). using_events1.py Using the move function. using_move.py Using the itemconfig function. using_itemconfig.py Chapter 13 Bounce (example 1) - this one doesn't do anything when it's run. bounce1.py Bounce (example 2) - stationary ball. bounce2.py Bounce (example 3) - ball moving upwards. bounce3.py Bounce (example 4) - ball moving up and down. bounce4.py Bounce (example 5) - ball moving around the screen. bounce5.py Chapter 14 Bounce (example 6) - adding the paddle. bounce6.py Bounce (example 7) - moving paddle. bounce6.py Bounce (example 8) - bouncing the ball when it hits the paddle. bounce6.py Bounce (example 9) - ending the game when the ball hits the floor. bounce6.py Chapter 15 Transparent Image - 27 by 30 pixels. transparent-image.gif 6 Stick Figure Images - left and right. stickfigure.zip 3 Platform images. platform.zip 2 Door images. door.zip Background image. background.gif Chapter 16 Stickman Game, version 1 - displaying the background. stickmangame1.py Stickman Game, version 2 - adding the within functions. stickmangame2.py Stickman Game, version 3 - adding the platform. stickmangame3.py Stickman Game, version 4 - adding lots of platforms. stickmangame4.py Chapter 17 Stick figure sprite class. stickfiguresprite.py Stickman Game, version 5 - adding the stick figure. stickmangame5.py Chapter 18 Stickman Game, version 6 - animating the stick figure. stickmangame6.py Stickman Game, version 6 - adding the door sprite. stickmangame7.py Afterword Pygame2 example. pygame-example.py Hello World Java example. HelloWorld.java Hello World C example. helloworld.c Hello World C++ example. helloworld.cpp Hello World C# example. helloworld.cs Hello World PHP example. helloworld.php Hello World Objective-C example. helloworld.m Hello World Perl example. helloworld.pl Hello World Ruby example. helloworld.rb Hello World Javascript example. helloworld.js Hello World Javascript Browser example. helloworld-js.html

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值