python基础篇-输入和输出

2018-12-28 08:04:51来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

输出

print ('hello, world')

print('The quick brown fox', 'jumps over', 'the lazy dog')

print(300)

print(100+200)

print('100 + 200 = ', 100 + 200)

输入

name = input('please enther your name:')
print('hello', name)

# -*- coding: utf-8 -*-
print('1024 * 768 =', 1024 * 768)

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Python中Flask框架SQLALCHEMY_ECHO设置

下一篇:字符串反转