Python学习的第一次总结
2021-04-26 16:29
标签:ant and 多分支 notepad 最小 odi 退出 括号 总结 执行Python的方式:1、交互器(不易保存,闪现,不方便看)2、用win-cmd 来执行(用notepad++保存后执行) 开始 >> cmd >> cd c:\ #切c盘>> dir#查看目录 cd.. 返回上一层 cd../.. 返回上上层 开始 >> cmd >> d: #直接跳D盘或其他盘(我只有一个盘,根本不用担心) 便捷找Python:把Python添加进环境变量的路径里 文件拓展名: .py Python文件 .java Java文件 .c/.s C源码 .avi .rmvb 视频文件 .exe 可执行文件 变量:存储运算过程中的一些中间过程,方便调用、修改、操作。#用大写字母开头表示常量 变量的命名规则: 1、具有描述性 2、只能由_,数字, 字母组成 3、不能以中文为变量名(不够高级) 4、不能以数字,空格开头 5、不能使用关键字符(int/ input/...) 7、变量名区分大小写 字符编号:ASSIC -- Unicode -- UTF-8(#为Unicode的扩展集 ) Python2: #!-*- coding: utf-8 -*- msg = u"XXXX" (变为万国码) 或#coding: utf-8 注销: # 单行注销 ‘’‘多行注销’‘’ 或 “”“多行注销”“” input接收的所有数据都是字符串 str(a)、int(a) #变身 print (“abc” + “qwe”) = abcqwe / print (“abc” , “qwe”) = abc qwe #字符串相连用+ tab不能用四个空格来代替 tab可以用任意个空格来代替,但要保持所有的符号一致(不够高级,别搞) 多分支 if 语句 if XX: print(“”) elif XX: print(“”) else: print(“”)#从头判断条件,满足条件就执行,执行完就退出 正常除法 5/2 = 2.5 整除、地板除 5//2 = 2 取余 5%2 = 1 指数运算 2**3 = 8 #优先级区分不清加括号 += → + -= → - *= → * /= → / //= → // **= → ** 优先级:not > and > or 短路原则: 条件1 and 条件2 #若条件1为假之后就不会判断条件2 条件1 or 条件2 #若条件1为真之后就不会判断条件2 ♥ 判断最大最小值 #先判断任意两个数的大小,然后再将大的赋给一个再与第三个判断大小 while 循环 while 真: 执行 • 输出各种数字 • while and if 猜年龄优化版 好啦! 今天的总结就到这里啦! 期待鱼鱼blogger的下一次总结哦! Python学习的第一次总结 标签:ant and 多分支 notepad 最小 odi 退出 括号 总结 原文地址:https://www.cnblogs.com/linyu3454/p/13251423.html
numb1 = int(input("Numb1 = "))
numb2 = int(input("Numb2 = "))
numb3 = int(input("Numb3 = "))
max_numb = 0
if numb1 > numb2 :
max_numb = numb1
if max_numb > numb3 :
print("Max Number = ",max_numb)
else:
print("Max Number = ",numb3)
else :
max_numb = numb2
if max_numb > numb3 :
print("Max Number = ",max_numb)
else:
print("Max Number = ",numb3)
age = 25
flag = True #用变量定义真假,方便更换真假
while flag:
user_guess = int(input("Pleas input an age :"))
if user_guess == age:
print("You are brillant!")
flag = False #猜测相等的时候,变为FALSE,跳出while循环
elif user_guess age:
print("Smaller, please try again")
else:
print("Bigger, please try again")
print("End Game!")
下一篇:springboot常用功能