- 博客(18)
- 资源 (2)
- 收藏
- 关注
转载 Java学习第三章-控制语句(仅做个人学习笔记用)
3.1.1if单选择结构语法结构:if(布尔表达式){ 语句块}Math类的使用 1.java.lang包中的Math类提供了一些用于数学计算的方法。 2.Math.random()该方法用于产生一个0到1区间的double类型的随机数,但是不包括1。 int i = (int) (6 * Math.random());...
2020-04-04 22:20:06 255
转载 java学习第一章-入门(仅做个人学习笔记用)
1.4.1JDK下载和安装JDK下载地址:www.oracle.com/technetwork/java/javase/downloads/index.html1.4.2环境变量Path的配置环境变量是在操作系统中一个具有特定名字的对象, 它包含了一个或者多个应用程序所将使用到的信息。Path是一个常见的环境变量,它告诉操作系统,当要求系统运行一个程序而没有告诉它程序所在...
2020-03-28 22:53:24 195
转载 java学习第二章-数据类型和运算符(仅做个人学习笔记用)
2.6.4 boolean类型变量/常量boolean类型有两个常量值,true和false,在内存中占一位(不是一个字节),不可以使用 0 或非 0 的整数替代 true 和 false ,这点和C语言不同。 boolean 类型用来判断逻辑条件,一般用于程序流程控制 。...
2020-03-24 22:47:02 399
原创 舵机
首先是一些关于舵机的介绍 舵机控制原理 http://blog.csdn.net/ljb825802164/article/deta本次使用的舵机是MG995和MG90S,个人认为这两个舵机还是没什么区别的,MG995的功率比较大,MG90S功率比较小,以下有一个关于MG995的使用文章http://www.ndiy.cn/thread在网上看到的程序
2017-11-05 16:37:34 4976
原创 python 笔记
.>>> str1='i am a dashuaige'>>> str1[:5]'i am '>>> str1[:4]'i am'>>> str1[3]'m'>>> str2=str1[:5]+'haha'+str1[5:]>>> str2'i am hahaa dashuaige'>>> str2='xiaoche'>>> str2'xiaoche'>>> str2.
2017-11-01 00:30:38 593
原创 python 初探8 元组
元组的创建>>> temp=(1)>>> temp1>>> type(temp)>>> temp2=1,2,3,4,5>>> temp2(1, 2, 3, 4, 5)>>> type(temp2)>>> temp=[]>>> type(temp)>>> temp=()>>> type(temp)>>> temp=(1,)>>> temp(1,)>>> ty
2017-10-30 23:07:48 336
原创 Python初探7 列表
1.创建一个列表>>> number=['1','2','3','baba','哈哈']>>> number['1', '2', '3', 'baba', '哈哈']>>> number=[1,2,3,4,5,6,7,8,9]>>> number[1, 2, 3, 4, 5, 6, 7, 8, 9]>>> mix=[2,'无赖',3.14,[1,1,4,3,2]]>>> mix
2017-10-30 01:06:07 313
原创 Python 初探6
for循环 及 range的使用>>> danci='wo he ni'>>> for i in danci: print (i,end=' ') w o h e n i >>> shuzu=['牛奶','咖啡','所爱','haha']>>> for each in shuzu: print (each,len(each),len(shuzu)) 牛
2017-10-26 23:39:02 352
原创 Python 初探5
1.Python的加减>>> a=1>>> a+=2>>> a3>>> a++SyntaxError: invalid syntax>>> a=a++SyntaxError: invalid syntax>>> a++;SyntaxError: invalid syntax>>> b=10>>> b-=5>>> b5需要注意的是Python加减操作中没有a++、b++
2017-10-24 23:55:22 360
原创 Python 初探4
Python的数据类型有整型(int)、布尔型(bool)、浮点型(float)数据类型之间的转换to int>>> a='110'>>> b=int(a)>>> b110>>> a='haha'>>> b=int(a)Traceback (most recent call last): File "", line 1, in b=int(a)ValueEr
2017-10-24 23:15:36 378
原创 Python 初探3 条件分支与while循环,逻辑操作
>>> 1<3True>>> 1<0False>>> 1<=1True>>> 1!=1False>>> 1==1Truerandom模块的使用import random #引入randomsecret = random.randint(1,10) #secret取随机整数1~10
2017-10-24 00:36:15 333
原创 Python 初探2
>>> teacher='niuniuniu'>>> print (teacher)niuniuniu>>> first=3>>> second=8>>> third=first+second>>> print(third)11>>> myteacher='xioxixo'>>> yourteacher='hhaa'>>> ourteache
2017-10-23 23:32:42 451
TXLINE2003.zip
2020-03-24
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人