Chinaunix首页 | 论坛 | 博客
  • 博客访问: 599716
  • 博文数量: 118
  • 博客积分: 2114
  • 博客等级: 大尉
  • 技术积分: 1275
  • 用 户 组: 普通用户
  • 注册时间: 2009-03-10 00:02
文章分类

全部博文(118)

文章存档

2019年(1)

2018年(4)

2017年(1)

2016年(6)

2015年(1)

2014年(1)

2013年(5)

2012年(4)

2011年(17)

2010年(13)

2009年(65)

分类: Python/Ruby

2009-03-17 18:52:21

1, about print
注意: 只要和字符串相关的都要有引号,单的双的都ok

2, 输出到文件
注意: 首先要open, 但不要忘记close

#!/bin/env python
import sys
outfile = open('/tmp/outfile.log','a')
user = raw_input("Please input your name:")
print >> outfile, user
outfile.close()

just to page 34

3,eg

#!/usr/bin/python
# Filename: while.py

number = 23
running = True

while running:
    guess = int(raw_input('Enter an integer : '))

    if guess == number:
        print 'Congratulations, you guessed it.'
        running = False # this causes the while loop to stop
    elif guess < number:
        print 'No, it is a little higher than that'
    else:
        print 'No, it is a little lower than that'
else:
    print 'The while loop is over.'
    # Do anything else you want to do here

print 'Done'


just page 52

阅读(817) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~