day1

#!/usr/bin/python3

# item1=int(input("first number:"))
# item2=int(input("second number:"))
# total=item1+
# item2
# print(total)
word='word'
sentence="这是一句话"
paragraph='''这是一个段落,
可以包含多行语句'''
print(word)
print(sentence)
print(paragraph) #注释语句
import sys;
x='python'
sys.stdout.write(x+' ')

原文地址:https://www.cnblogs.com/shineriver/p/12177191.html