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+'\n')

posted @ 2020-01-10 17:16  文州小生  阅读(89)  评论(0编辑  收藏  举报