运维网's Archiver
论坛
›
Python
› python之helloworld
23decxf
发表于 2017-4-22 07:24:23
python之helloworld
#!/usr/bin/env python
print 'hello,world'
print 'The quick brown fox','jumps over','the lazy dog'
print 300
print 100+200
print '100 + 200 = ',100+200
name = raw_input('请输入您的名字,并回车:')
print 'hello,',name
页:
[1]
查看完整版本:
python之helloworld