初识 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---Redis的初识
下一篇: Python字符的编码格式
推荐阅读
-
python is和==的区别
-
python数据分析Numpy库的常用操作
-
Python __slots__的使用方法
-
Python文件中相对路径的“正确写法”
-
Python使用tablib生成excel文件的简单实现方法
-
FileNotFoundError: [Errno 2] No such file or directory: ‘errors.out‘ (python自然语言处理 5.6 最后的示例报错)
-
Python简单连接MongoDB数据库的方法
-
Python中logging日志的四个等级和使用
-
Python利用pip安装tar.gz格式的离线资源包
-
python中startswith()和endswith()的用法详解