Python编程入门到实践 - 笔记( 7 章)

简介:

第 7 章讲了用户输入 input( ) 和 while 循环,内容如下

input( ) 工作原理

超过一行的 input( )

int( ) 来获取数字的输入,进行比较

求模运算

简单的 while 循环。我自己的理解就是设定一个条件,while 满足这个条件开始循环,不满足退出

break 直接退出

continue 跳出当前层的循环

避免无限循环

while 在列表中的应用

while 删除列表中指定的字符串 remove()

用户输入的字符来填充字典



input( ) 工作原理

首先定义 input( ) 函数括号中向用户显示提示说明,让用户输入内容

在将用户输入的内容保存到变量 message 中,最后打印

-------------------------------------------------------------------------------------------

message = input("Tell me something, and I will repeat it back to you: ")   
print(message)

-------------------------------------------------------------------------------------------

Tell me something, and I will repeat it back to you: haha   
haha



编写清晰的程序

---------------------------------------------------------

name = input("Please enter your name: ")   
print("Hello, " + name + "!")

---------------------------------------------------------

Please enter your name: python   
Hello, python!



超过一行的 input

如果想打印多行提示信息,可以使用 +=

-------------------------------------------------------------------------------------------

prompt = "If you tell us who you are, we can personalize the message you see."   
prompt += "\nWhat is your first name? "

name = input(prompt)   
print("\nHello, " + name + "!")

-------------------------------------------------------------------------------------------

If you tell us who you are, we can personalize the message you see.   
What is your first name? python

Hello, python!



使用 int( ) 来获取数值输入

如果不指定 age=int(age),python将会报错

-------------------------------------------

age = input("How old are you? ")   
print(age)

age = int(age)

if age >= 18:   
     print(age)

-------------------------------------------

How old are you? 29   
29    
29

 


int( ) 进行数值比较,进行测试

--------------------------------------------------------------------------------

height = input("How tall are you, in inches? ")   
height = int(height)

if height >= 36:   
     print("\nYou're tall enough to ride!")    
else:    
     print("\nYou'll be able to ride when you're a little older.")

--------------------------------------------------------------------------------

How tall are you, in inches? 89

You're tall enough to ride!



求膜运算符

两个数相除,返回余数

---------------------

print(4 % 3)   
print(5 % 3)    
print(6 % 3)    
print(7 % 3)

----------------------

1   
2    
0    
1



可以利用求模来计算一个数是奇数还是偶数

-------------------------------------------------------------------------------------------

number = input("Enter a number, and I'll tell you if it's even or odd: ")   
number = int(number)

if number % 2 == 0:   
     print("\nThe number " + str(number) + " is even.")    
else:    
     print("\nThe number " + str(number) + " is odd.")

-------------------------------------------------------------------------------------------

Enter a number, and I'll tell you if it's even or odd: 78

The number 78 is even.



while 循环

如果 while 小于等于 5,就一直运行

打印一次后,就将 current_number 的数值 +1

--------------------------------------

current_number = 1   
while current_number <= 5:    
     print(current_number)    
     current_number += 1

--------------------------------------

1   
2    
3    
4    
5



让用户选择何时退出

如果用户不输入 quit,就一直循环下去

-------------------------------------------------------------------------------------

prompt = "\nTell me something, and I will repeat it back to you:"   
prompt += "\nEnter 'quit' to end the program. "    
message = ""

while message != 'quit':   
     message = input(prompt)    
     print(message)

-------------------------------------------------------------------------------------

Tell me something, and I will repeat it back to you:   
Enter 'quit' to end the program. zhao    
zhao


Tell me something, and I will repeat it back to you:   
Enter 'quit' to end the program. shanshan    
shanshan


Tell me something, and I will repeat it back to you:   
Enter 'quit' to end the program. quit    
quit



进行更改

上面的程序在用户输入 quit 时,也会将 quit 作为消息在打印一遍

代码中并没有定义如果用户输入 quit 会怎么样,所以当用户输入 quit

直接结束循环,退出

-------------------------------------------------------------------------------------

prompt = "\nTell me something, and I will repeat it back to you:"   
prompt += "\nEnter 'quit' to end the program. "    
message = ""

while message != 'quit':   
     message = input(prompt)

     if message != 'quit':   
          print(message)

-------------------------------------------------------------------------------------

Tell me something, and I will repeat it back to you:   
Enter 'quit' to end the program. zhao    
zhao


Tell me something, and I will repeat it back to you:   
Enter 'quit' to end the program. quit



继续改进上面的代码

就像刚才说的,并没有指定如果用户输入 quit 会怎么样

其实在 while 循环中嵌套一个 if-else 语句就可以了

但是开始循环时,先定义一个 active=True

如果是 True 就循环,是 False 就停止循环

------------------------------------------------------------------------------------

prompt = "\nTell me something, and I will repeat it back to you:"   
prompt += "\nEnter 'quit' to end the program. "

active = True   
while active:    
     message = input(prompt)

     if message == 'quit':   
          active = False    
     else:    
          print(message)

------------------------------------------------------------------------------------

Tell me something, and I will repeat it back to you:   
Enter 'quit' to end the program. zhao    
zhao


Tell me something, and I will repeat it back to you:   
Enter 'quit' to end the program. quit



break 直接退出循环

还是以上面的代码为例,当用户输入 break 时,直接 break,结束当前的 while 循环

-----------------------------------------------------------------------------------

prompt = "\nPlease enter the name of a city you have visited:"   
prompt += "\n(Enter 'quit' when you are finished.)"

while True:   
     city = input(prompt)

     if city == 'quit':   
          break    
     else:    
          print("I'd love to go to " + city.title() + "!")

-----------------------------------------------------------------------------------

Please enter the name of a city you have visited:   
(Enter 'quit' when you are finished.)zhao    
I'd love to go to Zhao!


Please enter the name of a city you have visited:   
(Enter 'quit' when you are finished.)shushu    
I'd love to go to Shushu!


Please enter the name of a city you have visited:   
(Enter 'quit' when you are finished.)quit



continue 跳出当前的循环

每循环一次就 +1,当 current_number 可以被 2 整除的时候

就执行 continue,跳出这一层循环,继续 while 的下一次循环

------------------------------------------

current_number = 0   
while current_number < 10:    
     current_number += 1    
      if current_number % 2 == 0:    
          continue

     print(current_number)

------------------------------------------

1   
3    
5    
7    
9



避免无限循环

死循环代码如下,x 开始等于 1,在第一次循环结束后并没有变,

一直等于 1,永远满足  x <= 5 的条件,所以会被一直打印

------------------

x = 1   
while x <= 5:    
     print(x)

------------------


正常代码

需要指定一个条件,每循环一次 x 的值都 +1

------------------

x = 1   
while x <= 5:    
     print(x)    
     x += 1

------------------



while 在列表中的应用

-----------------------------------------------------------------------

unconfirmed_users = ['alice', 'brian', 'candace']   
confirmed_users = []

while unconfirmed_users:   
     current_user = unconfirmed_users.pop()

     print("Verifying user: " + current_user.title())   
     confirmed_users.append(current_user)    
     
print("\nThe following users have been confirmed:")    
for confirmed_user in confirmed_users:    
     print(confirmed_user.title())

-----------------------------------------------------------------------

Verifying user: Candace   
Verifying user: Brian    
Verifying user: Alice


The following users have been confirmed:   
Candace    
Brian    
Alice



删除包含特定值的所有列表元素

while 中一直执行 remove( ) 删除列表中的 cat 字符

----------------------------------------------------------------------

pets = ['dog', 'cat', 'dog', 'goldfish', 'cat', 'rabbit', 'cat']   
print(pets)

while 'cat' in pets:   
     pets.remove('cat')

print(pets)

----------------------------------------------------------------------

['dog', 'cat', 'dog', 'goldfish', 'cat', 'rabbit', 'cat']   
['dog', 'dog', 'goldfish', 'rabbit']



用户输入来填充字典

定义一个空的字典 responses

定义 polling_active = True 开始循环,等于 False 退出循环

让用户分别输入 name,response

responses[name] = response  将用户输入的添加到 responses 字典中

for 循环 items( ) 遍历 responses 字典

-------------------------------------------------------------------------------------------

responses = {}

polling_active = True

while polling_active:   
     name = input("\nWhat is your name? ")    
     response = input("Which mountain would you like to climb someday? ")

     responses[name] = response

     repeat = input("Would you like to let another person respind? (yes/ no) ")   
     if repeat == 'no':    
          polling_active = False


print("\n--- Poll Results ---")   
for name, response in responses.items():    
     print(name + " would like to climb " + response + ".")

-------------------------------------------------------------------------------------------

What is your name? shanshan   
Which mountain would you like to climb someday? taiqiu     
Would you like to let another person respind? (yes/ no) no


--- Poll Results ---   
shanshan would like to climb taiqiu .

本文转自   mlwzby   51CTO博客,原文链接:http://blog.51cto.com/aby028/1965223

相关文章
|
1月前
|
存储 数据采集 人工智能
Python编程入门:从零基础到实战应用
本文是一篇面向初学者的Python编程教程,旨在帮助读者从零开始学习Python编程语言。文章首先介绍了Python的基本概念和特点,然后通过一个简单的例子展示了如何编写Python代码。接下来,文章详细介绍了Python的数据类型、变量、运算符、控制结构、函数等基本语法知识。最后,文章通过一个实战项目——制作一个简单的计算器程序,帮助读者巩固所学知识并提高编程技能。
|
20天前
|
Unix Linux 程序员
[oeasy]python053_学编程为什么从hello_world_开始
视频介绍了“Hello World”程序的由来及其在编程中的重要性。从贝尔实验室诞生的Unix系统和C语言说起,讲述了“Hello World”作为经典示例的起源和流传过程。文章还探讨了C语言对其他编程语言的影响,以及它在系统编程中的地位。最后总结了“Hello World”、print、小括号和双引号等编程概念的来源。
105 80
|
9天前
|
Python
[oeasy]python055_python编程_容易出现的问题_函数名的重新赋值_print_int
本文介绍了Python编程中容易出现的问题,特别是函数名、类名和模块名的重新赋值。通过具体示例展示了将内建函数(如`print`、`int`、`max`)或模块名(如`os`)重新赋值为其他类型后,会导致原有功能失效。例如,将`print`赋值为整数后,无法再用其输出内容;将`int`赋值为整数后,无法再进行类型转换。重新赋值后,这些名称失去了原有的功能,可能导致程序错误。总结指出,已有的函数名、类名和模块名不适合覆盖赋新值,否则会失去原有功能。如果需要使用类似的变量名,建议采用其他命名方式以避免冲突。
30 14
|
4天前
|
人工智能 编译器 Python
python已经安装有其他用途如何用hbuilerx配置环境-附带实例demo-python开发入门之hbuilderx编译器如何配置python环境—hbuilderx配置python环境优雅草央千澈
python已经安装有其他用途如何用hbuilerx配置环境-附带实例demo-python开发入门之hbuilderx编译器如何配置python环境—hbuilderx配置python环境优雅草央千澈
python已经安装有其他用途如何用hbuilerx配置环境-附带实例demo-python开发入门之hbuilderx编译器如何配置python环境—hbuilderx配置python环境优雅草央千澈
|
25天前
|
数据可视化 算法 数据挖掘
Python量化投资实践:基于蒙特卡洛模拟的投资组合风险建模与分析
蒙特卡洛模拟是一种利用重复随机抽样解决确定性问题的计算方法,广泛应用于金融领域的不确定性建模和风险评估。本文介绍如何使用Python和EODHD API获取历史交易数据,通过模拟生成未来价格路径,分析投资风险与收益,包括VaR和CVaR计算,以辅助投资者制定合理决策。
71 15
|
19天前
|
分布式计算 大数据 数据处理
技术评测:MaxCompute MaxFrame——阿里云自研分布式计算框架的Python编程接口
随着大数据和人工智能技术的发展,数据处理的需求日益增长。阿里云推出的MaxCompute MaxFrame(简称“MaxFrame”)是一个专为Python开发者设计的分布式计算框架,它不仅支持Python编程接口,还能直接利用MaxCompute的云原生大数据计算资源和服务。本文将通过一系列最佳实践测评,探讨MaxFrame在分布式Pandas处理以及大语言模型数据处理场景中的表现,并分析其在实际工作中的应用潜力。
57 2
|
1月前
|
存储 缓存 Python
Python中的装饰器深度解析与实践
在Python的世界里,装饰器如同一位神秘的魔法师,它拥有改变函数行为的能力。本文将揭开装饰器的神秘面纱,通过直观的代码示例,引导你理解其工作原理,并掌握如何在实际项目中灵活运用这一强大的工具。从基础到进阶,我们将一起探索装饰器的魅力所在。
|
8月前
|
人工智能 Java Python
python入门(二)安装第三方包
python入门(二)安装第三方包
109 1
|
3月前
|
机器学习/深度学习 Python
【10月更文挑战第5天】「Mac上学Python 6」入门篇6 - 安装与使用Anaconda
本篇将详细介绍如何在Mac系统上安装和配置Anaconda,如何创建虚拟环境,并学习如何使用 `pip` 和 `conda` 管理Python包,直到成功运行第一个Python程序。通过本篇,您将学会如何高效地使用Anaconda创建和管理虚拟环境,并使用Python开发。
103 4
【10月更文挑战第5天】「Mac上学Python 6」入门篇6 - 安装与使用Anaconda
|
3月前
|
IDE 开发工具 iOS开发
【10月更文挑战第3天】「Mac上学Python 3」入门篇3 - 安装Python与开发环境配置
本篇将详细介绍如何在Mac系统上安装Python,并配置Python开发环境。内容涵盖Python的安装、pip包管理工具的配置与国内镜像源替换、安装与配置PyCharm开发工具,以及通过PyCharm编写并运行第一个Python程序。通过本篇的学习,用户将完成Python开发环境的搭建,为后续的Python编程工作打下基础。
320 2
【10月更文挑战第3天】「Mac上学Python 3」入门篇3 - 安装Python与开发环境配置