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

学Python的第五天

时间:2019-09-01 01:22:41      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:pytho   coding   学python   字符类型   mysq   span   lse   class   ==   

最近忙着学MySQL,但是小编也不会放弃学Python!!!

因为热爱所以学习~

好了各位,进入正题,由于时间问题今天学的不是很多....

#!/usr/bin/env python
# -*- coding:utf8 -*-
#input只接收字符串,需转化字符类型方可运算
 inp = input ("number: ")
 new_inp = int(inp)
 while new_inp == 10:
     num = new_inp + 90
     print (num)
     break
 else:
     print ("请输入数字10!")
#continue终止当前循环,break跳出整个循环
 count = 0
 while count < 10:
     if count == 7:
         count = count + 1
         continue
     print (count)
     count = count + 1
#in ,not in用法
name = "我的世界"
if "世界" in name:
    print(ok)
elif "阿坤" not in name:
    print (nonull)
else:
    print(null)

 

学Python的第五天

标签:pytho   coding   学python   字符类型   mysq   span   lse   class   ==   

原文地址:https://www.cnblogs.com/tomcache/p/11441113.html

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