Python打卡Day03
——if语法和三引号
if语法
import random
a = random.randint(1, 10)
b = random.randint(1, 10)
print("a=%d,b=%d" % (a, b))
if a >= b:
print('a大于b')
else:
print('a小于b')
三引号
python中三引号可以将复杂的字符串进行复制:
- python三引号允许一个字符串跨多行,字符串中可以包含换行符、制表符以及其他特殊字符。
- 三引号的语法是一对连续的单引号或者双引号(通常都是成对的用)。
# 三引号使用
chat = """how are you?
i'm fine, than you,and you?
me too!"""
print(chat)