首页 > 代码库 > python第二课笔记
python第二课笔记
什么是BIF?
BIF是python的内置函数
用课堂上小甲鱼教的方法数一数 Python3 提供了多少个 BIF?
输入 dir(__builtins__) 可以看到 Python 提供的内置方法列表,68个
在 Python 看来:‘FishC‘ 和 ‘fishc‘ 一样吗?
不一样 python区分大小写
在小甲鱼看来,Python 中什么是最重要的?你赞同吗?
缩进 不赞同
这节课的例子中出现了“=”和“==”,他们表示不同的含义,你在编程的过程中会不小心把“==”误写成“=”吗?有没有好的办法可以解决这个问题呢?
=表示赋值 ==表示判断是否相等 一般不会 熟悉记住就好
你听说过“拼接”这个词吗?
将两个字符串“相加”在一起
编写程序:hello.py,要求用户输入姓名并打印“你好,姓名!”
print("Please input your names")
name = input()
print("hello %s"%name)
编写程序:calc.py 要求用户输入1到100之间数字并判断,输入符合要求打印“你妹好漂亮”,不符合要求则打印“你大爷好丑”
num = input(‘Pelase enter 1 numbers to 100:‘)
while True:
if not num.isdigit():
print(‘The iput is illegal,Please re-enter the digital:‘,end=‘‘)
num = input()
else:
num = int(num)
if num > 100:
print(‘Your uncle is ugly‘)
else:
print(‘Your sister is so beautiful‘)
break
本文出自 “全能冠军小柠檬” 博客,请务必保留此出处http://lemonit.blog.51cto.com/6043645/1597801
python第二课笔记