摘要: 1、 from turtle import * for i in range(5) forward(200) right(144) 2、 from turtle import *for i in range(5): circle(20*i) up() goto(0,-20*i) down() wri 阅读全文
posted @ 2017-09-12 20:59 017廖佳辉 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 1、 import turtle turtle.circle(10) turtle.circle(20) tuitle circle(30) 2、 turtle.circle(20) turtle.up() turtle.goto(0,-15) turtle.down() turtle.circle 阅读全文
posted @ 2017-09-08 20:38 017廖佳辉 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1、简单的输入输出交互。 input('please input your name:') please input your name: coffee'coffee', 2、用一条式子求出两数之和。 x=input('输入第一个数:') 输入第一个数:1 y=input('输入第二个数:') 输入 阅读全文
posted @ 2017-09-06 21:22 017廖佳辉 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1.信息与数据的区别是什么? 答:数据:对客观事物的性质、状态以及相互关系等进行记载的物理符号或是这些物理符号的组合,也包含数值数据和非数值数据。 信息:是数据经过加工处理后得到的另一种形式的数据,这种数据在某种程度上影响接收者的行为。具有客观性、主观性和有用性。 关系:信息是数据的含义,数据是信息 阅读全文
posted @ 2017-09-05 19:50 017廖佳辉 阅读(145) 评论(0) 推荐(0) 编辑