摘要: ```python # coding = utf-8 # 1 line: Output print('Hello, world!') # 2 lines: Input, assignment #name = input('What is your name?\n') name = 'Lius' print('Hi, %s.' % name) # 3 lines: For loop, built... 阅读全文
posted @ 2017-05-31 14:50 Philly008 阅读(199) 评论(0) 推荐(0) 编辑