码迷,mamicode.com
首页 > 其他好文 > 详细

函数——函数接收四个参数分别是:姓名,性别,年龄,学历。用户通过输入这四个内容,然后将这四个内容传入到函数中, 此函数接收到这四个内容,将内容追加到一个student msg文件中

时间:2020-05-10 01:07:35      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:col   input   pre   bsp   open   class   put   内容   split   

def register(name,sex,age,edu):
    with open(student_msg.txt,a) as f1:
        f1.write(f{name},{sex},{age},{edu}\n)
n,s,a,e = input(输入姓名、性别、年龄、学历,并以逗号隔开).strip().replace(,,).split(,)
register(n,s,a,e)
  • input后面一定要跟strip(),固定搭配
  • split将字符串分割成一个列表
  • replace()把中文逗号替换成英文逗号,没有中文逗号,也不会报错

 

函数——函数接收四个参数分别是:姓名,性别,年龄,学历。用户通过输入这四个内容,然后将这四个内容传入到函数中, 此函数接收到这四个内容,将内容追加到一个student msg文件中

标签:col   input   pre   bsp   open   class   put   内容   split   

原文地址:https://www.cnblogs.com/cbbxxgc/p/12861396.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!