博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python语法三
阅读量:6485 次
发布时间:2019-06-23

本文共 372 字,大约阅读时间需要 1 分钟。

1. from os.path import exists

 import 了又一个很好用的命令 exists。这个命令将文件名字符串作为参 数,如果文件存在的话,它将返回 True,否则将返回 False

print "Does the output file exist? %r" % exists(to_file) 

2. 使用 def 新建函数

def print_two(*args):

   arg1, arg2 = args

   print "arg1: %r, arg2: %r" % (arg1, arg2) 

使用冒号结束函数定义,然后用四个空格的缩进行都属于函数内容

使用时直接:print_two("Zed","Shaw")

3. 

 

转载于:https://www.cnblogs.com/agile2011/p/5525690.html

你可能感兴趣的文章
L1-009. N个数求和
查看>>
实参传递不当导致的运行时错误
查看>>
sqlserver 批量删除存储过程(转)
查看>>
自建型呼叫中心
查看>>
Inno setup中定制安装路径
查看>>
要懂得对你的老板好一点!
查看>>
visio如何让动态连接线的单箭头变成双箭头?
查看>>
poj 1273 Drainage Ditches 网络流最大流基础
查看>>
Bash: how to check if a process id (PID) exists
查看>>
Mirantis Fuel fundations
查看>>
启动Tomcat一闪而过——分析及解决过程
查看>>
Android intent action大全
查看>>
使用 Flash Builder 的 Apple iOS 开发过程
查看>>
RabbitMq_05_Topics
查看>>
redis.conf
查看>>
SCALA中的函数式编程
查看>>
将List<int> 转换为用逗号连接为字符串
查看>>
C/C++中extern关键字详解
查看>>
Eclipse 最有用的快捷键
查看>>
K & DN 的前世今生(微软开源命名变革)
查看>>