welcome to learn prgram

Tips for your suceess(成功的秘诀)

1. Practice every day(每天练习)

  • 每天用两小时来学习。你可以使用各种零碎时间,积少成多。你可以使用搞这些时间用来巩固练习和记忆练习。每天练习,你才能善于你所学的事情。每天睡前和醒来时,是学习的最佳时期。

2. Do not over do it. Slow and plodding win the race.(不要过度练习,心平气和加上努力才能赢得比赛。)

  • 有时你会遇到困难,然后变得沮丧。不要急,慢慢来,一点一点地学习,最终你还是会弄懂的。当你遇到困难变得心烦气躁时,停下来休息一会,做点其他事情。如果你睡前学习的话,没准当你醒来时就想到答案了。所以说,暂停、休息、睡觉会帮你学到东西。这也是一种窍门。

3.It is all alright to be totally lost at first.(一开始完全不懂也没有关系)

  • 学习编程语言和学习人类语言差不多,有时当你学习的时候,会完全迷失掉。你会觉得这些对你完全没有意义。不过你慢慢会觉得还是有点意思的。编程里面都是一些常见的英语单词和符号,你所要做的事情就是理解这些东西索要表达的概念。掌握的方法就是慢慢来。一开始你完全搞不懂这是什么意思,但是只要试着去弄懂,你最后就会弄懂了。这只是一个接受的过程。从不同的角度看问题,然后弄懂。不过一开始什么都不懂也是没有关系的。

4.When you get stuck,get more information.(当你卡住时,寻找更多的信息)

  • 比如你的代码运行不了或者遇到看不懂的信息,或者就是进行不下去了,那就去找更多的信息,研究,上网查,打印数据和代码,从不同的角度检查代码。别就站在那里看代码,代码是不会告诉你答案的。如果你想要解决问题,那就去找更多的信息来解决困境。信息可以是去外部找资源,或者换个角度看问题。比如说到倒着读代码、或者给自己发邮件描述问题,这些技巧都是为了找出更多信息。

5.Try to solve it youself at first.(遇到问题时,先试着自己解决它)

  • 好的编程者经常坚持自己解决问题。这会给他们带来困难,因为自己解决问题很消耗时间和精力。但是向他人求助就快多了,但是你需要学习自己解决问题的本领。所以当你向别人求助时,先自己试着解决。

6.Good luck and have fun!(希望你有好运并且玩的开心!)

来自为知笔记(Wiz)

时间: 2024-08-12 03:10:29

welcome to learn prgram的相关文章

【Machine Learn】决策树案例:基于python的商品购买能力预测系统

决策树在商品购买能力预测案例中的算法实现 作者:白宁超 2016年12月24日22:05:42 摘要:随着机器学习和深度学习的热潮,各种图书层出不穷.然而多数是基础理论知识介绍,缺乏实现的深入理解.本系列文章是作者结合视频学习和书籍基础的笔记所得.本系列文章将采用理论结合实践方式编写.首先介绍机器学习和深度学习的范畴,然后介绍关于训练集.测试集等介绍.接着分别介绍机器学习常用算法,分别是监督学习之分类(决策树.临近取样.支持向量机.神经网络算法)监督学习之回归(线性回归.非线性回归)非监督学习(

TF.Learn

TF.Learn 手写文字识别 转载请注明作者:梦里风林Google Machine Learning Recipes 7官方中文博客 - 视频地址Github工程地址 https://github.com/ahangchen/GoogleML欢迎Star,也欢迎到Issue区讨论 mnist问题 计算机视觉领域的Hello world 给定55000个图片,处理成28*28的二维矩阵,矩阵中每个值表示一个像素点的灰度,作为feature 给定每张图片对应的字符,作为label,总共有10个la

Is it too late to learn to code?

Erin Parker, Founder Spitfire Athlete, iOS Engineer 9k upvotes by Francis Chen, Gaurav Baheti, Yue-Wing Yau, Maria Guryanova,(more) It's never too late. So much can happen in a year, it can amaze you. I majored in Economics. When I was about 23, I ra

Learn Python the Hard Way--Exercise 46

0. 缘起 <Learn Python the Hard Way>Exercise 46 要求安装四个python package pip, distribute, nose, virtualenv,(原书作者特别提醒: Do not just donwload these packages and install them by hand. Instead see how other people recommend you install these packages and use th

教程 1:让我们通过例子来学习(Tutorial 1: Let’s learn by example)

通过这第一个教程,我们将引导您从基础完成创建简单的带有注册表单的应用. 我们也将解释框架行为的基本方面.如果您对Phalcon的自动代码生成工具有兴趣, 您可以查看 developer tools. 确认安装(Checking your installation)? We'll assume you have Phalcon installed already. Check your phpinfo() output for a section referencing "Phalcon"

Learn Python From &#39;Head First Python&#39; [3](2) : Pickle

1.the use of 'with open... as ...' 2.the use of pickle(dump and load) for Step1: the 'with open ... as...' is the short format of 'try...except...finally' for Step2: you can store a list with pickle.dump() and get the content again with pickle.load()

Learn Docker

Learn Docker A Container is to VM today, what VM was to Physical Servers a while ago. The workload seems to shifting towards containers, and fast! In case you haven’t started ramping on it yet, you may find it a bit overwhelming to begin with. I thou

Java-集合(没做出来)第四题 (List)写一个函数reverseList,该函数能够接受一个List,然后把该List 倒序排列。 例如: List list = new ArrayList(); list.add(“Hello”); list.add(“World”); list.add(“Learn”); //此时list 为Hello World Learn reverseL

没做出来 第四题 (List)写一个函数reverseList,该函数能够接受一个List,然后把该List 倒序排列. 例如: List list = new ArrayList(); list.add(“Hello”); list.add(“World”); list.add(“Learn”); //此时list 为Hello World Learn reverseList(list); //调用reverseList 方法之后,list 为Learn World Hello package

快速入门:十分钟学会PythonTutorial - Learn Python in 10 minutes

This tutorial is available as a short ebook. The e-book features extra content from follow-up posts on various Python best practices, all in a convenient, self-contained format. All future updates are free for people who purchase it. Preliminary fluf