python -1初探 (下) 用户交互

初探 (下)

建议:
在电脑上 以练为主
查看python手册 和 在线运行工具

(了解内容)

1.用户交互

以文本*.py文件的形式,进行交互

1. 一个小程序

写一个小程序(5分钟写出来)
Raw_input()
询问用户 姓名,年龄,性别、工作,工资
以格式化的方式输出:
Information of company staff:
Name : XXX
Age : XX
Sex : XXXX
Job : XXX

代码1

# -*- coding: UTF-8 -*-
__authon__ = 'philo'

name = raw_input("Please input your name:")

print "Your name is ",name

代码2

# -*- coding: UTF-8 -*-
__authon__ = 'philo'

name = raw_input("Please input your name:")
age = raw_input("Please input your age:")
job = raw_input("Please input your job:")
salary = raw_input("Please input your salary:")

print """Information of company staff:
    Name   : %s
    age    : %s
    job    : %s
    salary : %s
---------End---------
""" %(name,age,job,salary)

linux 下使用*.py文件 进行 用户交互

#!/usr/bin/env python
print ('hello world!')
$ chmod 755 hello.py
$ ./hello.py

你可能感兴趣的:(python)