无数据类型:
Python NoneType 是一种表示值不存在的数据类型。在Python中,NoneType由关键字“None”表示。
示例:
在此示例中,函数被调用,因此函数内部将被打印。
def display(): print("hello") display()
输出:
hello
示例2:
在此示例中,函数不返回任何值。所以 print(display()) 变成了“None”。
def display(): print("hello") print(display())
输出:
hello None
示例 3:
在此示例中,return 语句将用于返回值(即 30)。如果我们不使用任何 return 语句,输出将为“None”。
def display(): print("hello") return 10+20 print(display())
输出:
hello 30
input() 函数:
Python 中的内置函数 input() 接受用户的输入,并默认将其作为字符串返回。
示例:
name = input("Enter your name: ") print("Welcome to Python", name) print(type(name))
输出:
Enter your name: Pritha Welcome to Python Pritha <class 'str'>
以上是Python 中的数据类型和 input() 函数的详细内容。更多信息请关注PHP中文网其他相关文章!