python入门-用户输入
Posted baker95935
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门-用户输入相关的知识,希望对你有一定的参考价值。
1 input()函数来实现用户输入,程序在等待输入的时候会终止,获取用户的输入后继续
message = input("tell me something,and I will repreat it back to you:") print(message)
2 使用int来获取数值输入
age = input("How old are you?") age = int(age) print(age)
3 求模运算符
number = input("Enter a number,and i‘ll tell you if it‘s even or odd:") number = int(number) if number % 2 == 0: print(" the number" + str(number) + "is even.") else: print(" the number" + str(number) + "is odd.")
以上是关于python入门-用户输入的主要内容,如果未能解决你的问题,请参考以下文章
结合两个代码片段?将用户输入的 Youtube url 转换为嵌入 url,然后将 iframe src 替换为转换后的 url