码迷,mamicode.com
首页 > 编程语言 > 详细

python入门

时间:2017-07-13 01:07:20      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:大小写   int   变量   imp   for循环语句   max   使用   span   color   

1,输出 print 或 print() ,数字直接即可输出,字符串用" "或‘ ‘  。输入 input()

2,if/while语句(注意缩进,tab与空格键混用会出错)

if/while 条件:

 

    可执行的语句

3,引入模块的方法: from 模块名 import 方法名(写在最前面)

引入随机数: from random import randint

例1:猜数字游戏

num = 10                                   ----->   num=randint(min,max)
print ‘Guess what I think?‘
flag = False

while flag == False:
  answer = input()

  if answer < num:
    print ‘too small‘
  if answer > num:
    print ‘too big‘
  if answer == num:
    print ‘Bingo!‘
    flag=True

4,变量的名称:第一个字符必须是字母或者下划线;剩下的部分可以是字母,下划线,数字(0-9);大小写敏感 (例:_my_name ; name_23 )

 5,bool的使用 (False or True) 可用 not 

6,for循环语句: for...in...  for i in range(a,b) 即 

 

python入门

标签:大小写   int   变量   imp   for循环语句   max   使用   span   color   

原文地址:http://www.cnblogs.com/-ONE-/p/7158003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!