print_tuple.py

来自「《简明 Python 教程》为 "A Byte of Python" 的唯一指定」· Python 代码 · 共 10 行

PY
10
字号
#!/usr/bin/env python
# Filename: print_tuple.py

age=22
name='Swaroop'

print '%s is %d years old' %(name,age)
print 'Why is %s playing with that python?' %name

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?