print
(
"我在中国学Python
\n
"
)
# 练习一下循环的使用
for
i
in
range
(
1
,
21
):
print
(
f
"我爱编程中国
{
i
}
次"
)
print
(
000
)