鱼C论坛

 找回密码
 立即注册
查看: 1711|回复: 0

[技术交流] python 0基础学习 第19讲 笔记

[复制链接]
发表于 2017-8-7 23:52:32 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本节课讲的还是一个函数中的应用,先是没有返回值的函数,其会返回none。之后是一个全局变量与局部变量之间的差别,很好理解。
顺便提一句,希望小甲鱼的书能出一个kindle版本。
>>> def fun1():
        print('hello word')
temp = fun1
SyntaxError: invalid syntax
>>> def fun1():
        print('hello word')
temp = fun1()
SyntaxError: invalid syntax
>>> ssss = fun1()
Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    ssss = fun1()
NameError: name 'fun1' is not defined
>>> def fun1():
        print('hello word')
fun1()
SyntaxError: invalid syntax
>>>  def fun1():
        print('hello word')
        
SyntaxError: unexpected indent
>>>  def fun1():
        print('hello word')
        
SyntaxError: unexpected indent
>>> def fun1():
        print('hello word')

        
>>> temp = fun1
>>> temp=fun()
Traceback (most recent call last):
  File "<pyshell#13>", line 1, in <module>
    temp=fun()
NameError: name 'fun' is not defined
>>> temp=fun1()
hello word
>>> temp
>>> print(temp)
None
>>> type(temp)
<class 'NoneType'>
>>> def back():
        return[1,2,3,4,5,666]

>>> back()
[1, 2, 3, 4, 5, 666]
>>> def back():
        return 1,2,3,4,5,666

>>> back()
(1, 2, 3, 4, 5, 666)
>>> 

评分

参与人数 1鱼币 +1 收起 理由
小甲鱼 + 1

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 20:36

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表