cxone
cxone
全部文章
分类
题解(9)
归档
标签
去牛客网
登录
/
注册
cxone的博客
全部文章
(共3篇)
题解 | #读入字符串#
str = input() print(str) 输入前后需要加入空格
Python3
2022-10-16
1
310
题解 | #多行输出#
方法一: str1=‘Hello World!’ str2='Hello NewCoder' print(str1) print(str2) 方法二:直接加换行 print(str1+'\n'+str2) 方法三:使用sep参数 ...
Python3
2022-10-16
40
359
题解 | #Hello World!#
import sys try: while True: line = sys.stdin.readline().s...
Python3
2022-10-16
0
423