带有Python示例的True关键字

Python True关键字

True是python中的关键字(区分大小写),它是一个布尔值(类类型bool的值)。比较操作的结果为True。

True关键字的语法

    True

示例

    Input:

    x = True

    # 打印    print(x)

    Output:

    True

True关键字的Python示例

示例1:将True分配给变量,打印True的值和打印类型。

# python程序演示示例 

# True 关键词

# 将True分配给变量

x = True

# 打印ing the value

print("x: ", x)

# 打印ing type of True

print("Type of True:", type(True))

输出结果

x:  True

Type of True: <class 'bool'>

示例2:打印一些比较操作的结果。

# python程序演示示例 

# 真关键词

a = 10

b = 20

print(a>=10 and b>=20)

print(a==10 and b==20)

print(a!=20 and b!=10)

print(a>5 and b>10)

输出结果

True

True

True

True

以上是 带有Python示例的True关键字 的全部内容, 来源链接: utcz.com/z/348737.html

回到顶部