E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
6.00.1x
MIT6.00 1x 第一讲-计算机科学简介-笔记
6.00.1x
计算机科学和PYTHON编程导论1.计算科学简介(Introductiontocomputation)1.1计算科学基础(Basicsofcomputation)怎样进行计算机编程?
fkkkb
·
2020-09-10 20:27
MIT6-00-1x
计算机科学导论
MIT
6.00.1x
学习心得
现在是大三上半学期,看了萧井陌的编程入门指南之后,用了大概一个月的时间终于把MIT6.00.1x课程学完了,有编程经验,但是因为本科是信息工程准备跨考计算机科学,而且不愿意当一个只会敲代码的码农,所以对于基础看的特别特别重要,所以才会很仔细的从计算机导论学起。对于这门课,我觉得应该算是计算机导论里数一数二的课程。谈一下收获:1.培养出了计算机思想(Abstractions,algorithms,a
weixin_30752699
·
2020-09-10 19:52
MIT
6.00.1X
(9)(10) object
对象(object):对象意味着:1.一系列数据属性2.一套访问和操作这些数据的方法定义一个类的例子:classClass_name(object):#约定类的名称,首字母大写,括号号里的objcet是父类的名称,若没有则不写def__init__(self,x,y):'''初始化属性x,y'''self.y=yself.x=xdefgetX(self):returnxdefgetY(self):
earlene_wyl
·
2020-09-10 17:46
学习笔记
python
MIT
6.00.1.X
学习笔记
MIT
6.00.1X
计算机科学和PYTHON编程导论-学习笔记(六) 对象
前五节lecture学到的算法:1.穷举2.猜测和验证3.二分法4.分而治之简单数据类型:1.数字型:intfloat2.字符串str混合数据类型:1.tuples元组2.lists3.dictionaries元组:定义:orderedsequenceofelements(similartostring)Elementscanbemorethanjustcharacterse.g.t1=(1,’t
earlene_wyl
·
2020-09-10 17:15
MIT
6.00.1.X
学习笔记
MIT
6.00.1X
problem set
problemset1(1)count=0num=0whilecount=len(substring):returnlongest_substringelse:returnsubstringforiinrange(len(s)):longest_substring=find_substring(i,longest_substring)print('Longestsubstringinalphabe
earlene_wyl
·
2020-09-10 17:15
MIT
6.00.1.X
学习笔记
学习笔记
CS入门学习笔记9-MIT
6.00.1x
Lecture8AssertionsandExceptions1.whatisexception----exceptionstowhatwasexpectedpython中带有的提示error的方式为:raiseanexceptionraiseException(“descriptivestring”)2.python’shandlersforexceptionstry:f=open('grade
小蔡姬不想当咸鱼
·
2020-09-10 17:23
CS入门
MIT
6.00.1X
--Week 3
NEWTON-RAPHSONROOTFINDINGGeneralapproximationalgorithmtofindrootsofapolynomialinonevariablep(x)=anxn+an−1xn−1+⋯+a1x+a0Wanttofindrsuchthatp(r)=0Newtonshowedthatifgisanapproximationtotheroot,theng−p(g)/
UMVUE
·
2020-09-10 16:21
计算机导论
MIT
6.00.1x
计算机科学和Python编程导论 Set 4
WordScores为单词算分值感谢glhezjnucn童鞋的给力翻译!!Thefirststepistoimplementsomecodethatallowsustocalculatethescoreforasingleword.ThefunctiongetWordScoreshouldacceptasinputastringoflowercaseletters(aword)andreturnt
dukelu0
·
2020-09-10 15:40
MIT
python
分享
MIT
6.00.1x
计算机科学和Python编程导论 Set 3
RadiationExposure感谢glhezjnucn同学贡献的翻译!“Radioactivedecay”istheprocessbywhichanunstableatomlosesenergyandemitsionizingparticles-whatiscommonlyreferedtoasradiation.Exposuretoradiationcanbedangerousandisve
dukelu0
·
2020-07-07 18:09
MIT
python
分享
MIT
6.00.1x
计算机科学和Python编程导论 Set 1
CountingVowelsAssumesisastringoflowercasecharacters.Writeaprogramthatcountsupthenumberofvowelscontainedinthestrings.Validvowelsare:‘a’,‘e’,‘i’,‘o’,and‘u’.Forexample,ifs=‘azcbobobegghakl’,yourprogramsh
dukelu0
·
2020-07-07 18:38
MIT
python
分享
MIT
6.00.1x
计算机科学和Python编程导论 Problem Set 1
MIT6.00.1x计算机科学和Python编程导论ProblemSet1Problem1:CountingvowelsAssumesisastringoflowercasecharacters.Writeaprogramthatcountsupthenumberofvowelscontainedinthestrings.Validvowelsare:‘a’,‘e’,‘i’,‘o’,and‘u’.
SgrA_Master
·
2020-07-07 00:49
MIT
6.00.1x
MIT
6.00.1x
计算机科学和Python编程导论 Set 6
Part1Problem1:Encryption感谢glhezjnucn童鞋对本周问题的给力翻译!You’llnowwriteaprogramtoencryptplaintextintociphertextusingtheCaesarcipher.你现在来写一个函数将使用凯撒密码将明文转为密文。defbuildCoder(shift):"""ReturnsadictthatcanapplyaCae
dukelu0
·
2020-06-24 20:44
MIT
python
分享
MIT
6.00.1x
计算机科学和Python编程导论 Set 2
PayingOffCreditCardDebtEachmonth,acreditcardstatementwillcomewiththeoptionforyoutopayaminimumamountofyourcharge,usually2%ofthebalancedue.However,thecreditcardcompanyearnsmoneybycharginginterestontheba
dukelu0
·
2020-06-24 20:12
MIT
python
分享
MITx -
6.00.1x
学习笔记——递归
最近在学习MITx-6.00.1x,对课程中讲解的递归做了一个简单的笔记。以下是应用递归思想解决汉诺塔和斐波那契数列问题的总结。汉诺塔有三根杆子A、B、C。A杆上有N个(N>1)穿孔圆盘,盘的尺寸由下到上依次变小。要求按下列规则将将所有圆盘移至C杆:每次只能移动一个圆盘;大盘不能叠在小盘上面。思路解法的基本思想是递归。先把A塔顶部的N-1块盘移动到B塔,再把A塔剩下的大盘移到C,最后把B塔的N-1
Founting
·
2019-12-08 07:04
[MIT
6.00.1X
]学习地址
MITCS专业
6.00.1X
计算机科学与Python编程导论是计算机专业的入门课程,使用Python进行教学,对Python感兴趣的同学们可以在以下两个地址进行学习:1,学堂在线http://www.xuetangx.com
jerrytom0007
·
2017-02-11 01:12
Python
学习笔记
MIT经典计算机课程:计算思维及数据科学导论
昨天,我们在农民自制黑科技:无人驾驶拖拉机一文中提到,一位农民通过学习MIT的计算机网络课程
6.00.1x
,成功开发出了无人驾驶拖拉机的故事。
EarlGrey
·
2016-02-28 00:00
python
上一页
1
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他