Python教程

Python(1)

本文主要是介绍Python(1),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Python(1)

输入

input

# -*- codeing = utf-8 -*-
# @Time : 2021/11/20 11:39
# @Author : 斟茶冰冰yozi
# @File : demo01.py
# @Software : PyCharm

'''
输入使用的input,输入的内容会被赋值到这个变量
\n是换行符
'''
name = input("你的名字是~\n")
print("你的名字是:", name)

 判断输入类型

用input输入的是字符串,会需要强制类型转换

# -*- codeing = utf-8 -*-
# @Time : 2021/11/20 11:46
# @Author : 斟茶冰冰yozi
# @File : demo02.py
# @Software : PyCharm

# type可以判断数据类型
a = 18
b = "yozi"
print(type(a), type(b))
# type可以应用于输入,输入的与占位的不符合,出现报错,用type来先判断
num = input("输入一个数字:")
print(type(num))
number = int(num)
print("输入的数字是:%d" %number)

 

这篇关于Python(1)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!