博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python基础学习 day 1
阅读量:5263 次
发布时间:2019-06-14

本文共 1217 字,大约阅读时间需要 4 分钟。

  初学python,记录下自己的历程~

  了解了一下python的基本概念,现在使用的比较多的就是python2.7

  学习了if语句和两个经典的循环语句

#关于if语句的应用name = raw_input('input name')age = input('input age')#也可以用inputsalary = raw_input('salary')#使用if语句永远只有一个结果,满足条件即结束if age > 60:    msg = 'you are too old'elif age > 30:    msg = 'you are not young'else:    msg = 'you are still young'print'''information of %s:      name:%s       age:%d    salary:%s________________________%s ''' %(name, name, age ,salary, msg)#必须一一对应
#关于for循环(猜年龄)real_age = 18for i in range(10):    age = input('age:')    if age > real_age:        print 'think smaller'    elif age < real_age:        print 'think bigger'    else:        print 'you are right'        break    print 'you still have %s shots' % (9 - i)
#关于while循环(选定打印的数)import sysnum = 0count = 0while count <=1000:    if count == num:        print 'there is the number', count        while num <= count:            num = input('which number do you want? inuput 0 to exist')            if num == 0:                sys.exit()            if num <= count:                            print 'it is over'            else:        print 'loop:', count        count += 1else:    print 'loop:', count

 

转载于:https://www.cnblogs.com/huahua12/p/7491446.html

你可能感兴趣的文章
解决ThinkPHP关闭调试模式时报错的问题汇总
查看>>
【APT】SqlServer游标使用
查看>>
关于ExecuteNonQuery()返回值为-1
查看>>
Firefox修復QQ快速登錄
查看>>
PAT——1060. 爱丁顿数
查看>>
分布式技术追踪 2017年第二十期
查看>>
git添加公钥后报错sign_and_send_pubkey: signing failed: agent refused operation的解决办法
查看>>
Linux环境变量永久设置方法(zsh)
查看>>
MVC4.0 利用IActionFilter实现简单的后台操作日志功能
查看>>
脑袋卡在窗子里
查看>>
ruby 中文字符to_json后乱码(unicode)
查看>>
《大道至简》第六章读后感
查看>>
codeforce 597C-Subsequences(dp+树状数组)
查看>>
[android](学习笔记6)为应用程序添加对话框(1)
查看>>
windows下mongodb安装与使用
查看>>
rotate the clock
查看>>
bugku 变量
查看>>
Python 环境傻瓜式搭建 :Anaconda概述
查看>>
趁热打铁第一季《移动APP开发使用什么样的原型设计工具比较合适?》
查看>>
数据库01 /Mysql初识以及基本命令操作
查看>>