欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

初识 python 的随

程序员文章站 2022-04-11 16:51:40
...

只是记录下 跑完一遍基础就删,当时也是因为学一个东西笔记被删而懊悔

#常量大写 规则是不要去改变
#python g:\python相关\t1.py
#NAME='黄江海'
#print(NAME)
# """ 里面内容 可以分几行写""""
#print(str)
#str + - 可以拼接
#str*int 
#print(NAME*8)
#type 类型

#*******input 出来的全部都是字符串类型
#username=input('你的名字(提示信息): ')
#print('我叫:',username)
'''
if a==1 and b ==2:
    print('w1')
elif c==2:
    print('222')
else:
    print('wdwd')
'''
#嵌套if
'''
while count<5:
    print(count)
    if count == 2:
        break
else:
    print("666")
如果while 被break终止了 则else 不执行 
否则while 执行完退出的时候也会接着执行else内容
    
'''
#格式化输出(模板)
# % 占位符 %s -> 替换为str  d  i可以替换数字
#例子

name=input('你的名字')
name=input('你的名字')
age=input('你的年龄')
job=input('你的工作')
msg='''-----------info of %s -----
name:%s 
Age:%s
job:%s
-----------end-------------'''%(name,name,age,job)
print(msg)
#坑点 msg='我叫%s,今年%s ,学习进度1%' %('黄江',18)
#有只输出百分号 可以再百分号前再加一个百分号 前一个百分号 对后一个百分号转义

运算符
#python中用 and or 其他的和c++一样 2**3 2的3次方   // 整除  not 》 and 》or
#print(a or b) 如果a 为真则返回x 如果x 为假则返回 b 和  and 相反  
#str --> '100' s1='100' print(int (s1)) 只能是纯数字 组成的 数字转换成字符串  str(100)所有的都可以
#int -->bool   i=100 print(bool(i)) 非0即true
#https://www.cnblogs.com/jin-xin/articles/10563881.html 可以去参考这个博客

相关标签: python爬虫