1. Standard input and output
2016-10-14 本文已影响0人
捕鲸小能手
print(2333)
print('hello, world')
print('hello', 'world')
name = input('what\'s your name: ')
print('tell me something about you', name, '\n')
descr = input()
print(descr, 'wow, cool')
print(2333)
print('hello, world')
print('hello', 'world')
name = input('what\'s your name: ')
print('tell me something about you', name, '\n')
descr = input()
print(descr, 'wow, cool')