python 2019.10.16

学了if语句

if 条件:
    结果

if 条件:
    结果
elif 条件:
    结果
else:
    结果
while循环
while 循环条件:
    循环体

循环终止
1.改变循环条件终止
2.break 终止循环
3.continue 跳过本次循环继续下次循环

while 循环条件:
    循环体
else:#循环结束后运行else

占位符 %$:表示字符串  $d表示数字
例:
name = input("请输入你的名字")
age = int(input("请输入你的年龄"))
height = int(input("请输入你的身高"))

info=(我叫%s年龄$d岁身高%dcm学习进度3%%) %(name, age,height)
print(info)

运算符 + — * / % == +=  —= *=  /=  != <>  > <
逻辑运算符 not  and  or  优先级:()not and or
print(1 or 2) # 1
print(0 or 2) # 2
print(1 and 2)# 2
print(0 and 2)# 0

原文地址:https://www.cnblogs.com/LMJlmj/p/11679273.html

时间: 2024-10-08 08:57:41

python 2019.10.16的相关文章

2019.10.16&amp;17小结

话说也蛮久没写小结了,主要这两次考试失分严重,还是总结下吧. 10.16 T1 小奇挖矿2 100/0 [题目背景] 小奇飞船的钻头开启了无限耐久+精准采集模式!这次它要将原矿运到泛光之源的矿石交易市场,以便为飞船升级无限非概率引擎. [问题描述] 现在有m+1个星球,从左到右标号为0到m,小奇最初在0号星球. 有n处矿体,第i处矿体有ai单位原矿,在第bi个星球上. 由于飞船使用的是老式的跳跃引擎,每次它只能从第x号星球移动到第x+4号星球或x+7号星球.每到一个星球,小奇会采走该星球上所有的

@CSP模拟2019.10.16 - [email&#160;protected] 垃圾分类

目录 @[email protected] @[email protected] @accepted [email protected] @[email protected] @[email protected] 为了保护环境,p6pou建设了一个垃圾分类器. 垃圾分类器是一个树形结构,由 n 个垃圾桶和 n-1 条双向传送带组成. 垃圾处理器的编号为 1, 2, ..., n,每条传送带都可以花 1 秒钟将垃圾从一个垃圾桶输送到另一个垃圾桶. 垃圾投放点是编号为 r 的垃圾桶,垃圾总是投放在这

2019/10/16 无向图最小环算法研究

例题:POJ1734http://poj.org/problem?id=1734 考虑Floyd算法的过程,在外层循环k刚开始的时候,d[i,j]保存着“经过编号不超过k-1的节点”从i到j的最短路 于是 min{d[i,j]+a[i][k]+a[k][j]}  1<=i<j<k; 即为所求的最小环 #include<vector>#include<cstdio>#include<cstring>using namespace std;vector &

2019.10.16 每天问自己 三遍 或者更多:我收获了什么?我收获了什么?我收获了什么???

今天接收到的一个非常重要的挂反思就是每天都这么问问自己:我今天收获了什么? 因为今天看了这篇文章https://www.cnblogs.com/xiyuanMore/p/11673560.html 学习上,概率论听的还不错,但是没有做完题: 下午忙忙忙 主要是前期没统一 白做无用功 晚上效率不是很高.走神是个问题. 当然了 今天最大的收获就是跟洒洒好好交流 原文地址:https://www.cnblogs.com/juzijuziju/p/11689532.html

2019.10.27 头条面试准备

2019.10.27 头条面试准备 个人简历 2019.06 - 至今上海华为开发工程师 实习部门:5G开发部 项目:网站开发.运维开发.数据处理 2019.06至今华为实习 Python+Django+Javascript+Nginx+rabbitMQ+ELK 基于 Django 框架使用 Python 开发网站基础进程监控系统,实现进程异常记录.进程异常自动恢复.发送告警邮件,并且用 Web 界面进行展示和管理.整个框架由本人独立设计完成并上线,保证了部门 Web 的稳定. 使用Python

数学之路-python计算实战(16)-机器视觉-滤波去噪(邻域平均法滤波)

# -*- coding: utf-8 -*- #code:[email protected] #邻域平均法滤波,半径为2 import cv2 import numpy as np fn="test3.jpg" myimg=cv2.imread(fn) img=cv2.cvtColor(myimg,cv2.COLOR_BGR2GRAY) #加上椒盐噪声 param=20 #灰阶范围 w=img.shape[1] h=img.shape[0] newimg=np.array(img)

10.15 iptables filter表案例 10.16/10.17/10.18 iptables nat表应用

10.15 iptables filter表案例 10.16/10.17/10.18 iptables nat表应用 扩展 iptables应用在一个网段 http://www.aminglinux.com/bbs/thread-177-1-1.html sant,dnat,masquerade http://www.aminglinux.com/bbs/thread-7255-1-1.html iptables限制syn速率 http://www.aminglinux.com/bbs/thre

10.16输入一个字符串,内有数字和非数字字符,如: a123x456 17960? 302tab5876 将其中连续的数字作为一个整数,依次存放到一数组num中。例如123放在num[0]中,456放在num[1]中……统计共有多少个整数,并输出这些数。

10.16输入一个字符串,内有数字和非数字字符,如: a123x456 17960? 302tab5876 将其中连续的数字作为一个整数,依次存放到一数组num中.例如123放在num[0]中,456放在num[1]中--统计共有多少个整数,并输出这些数. #include <stdio.h> int main(){ void search(char * parr, int * pnum); char arr[100],* parr; int num[30],* pnum; parr=arr;

快速入门:十分钟学会PythonTutorial - Learn Python in 10 minutes

This tutorial is available as a short ebook. The e-book features extra content from follow-up posts on various Python best practices, all in a convenient, self-contained format. All future updates are free for people who purchase it. Preliminary fluf