gpt4 book ai didi

python - user(0)追溯(最近一次通话):

转载 作者:行者123 更新时间:2023-12-03 05:50:20 26 4
gpt4 key购买 nike

我叫米奇。以前,我在堆栈交换方面的数学和物理方面获得了惊人的帮助。我认为溢出是相关的,但我意识到我应该将这个问题放在一个问题上。我已经尝试了很多次,以尝试向自己介绍编程知识,特别是python,阅读全书大小的PDF以及扩展的YouTube视频,并不断探索必不可少的真正基础知识。

因此,我再次尝试,希望堆栈社区可以帮助我完成这些小小的旅程。我不确定为什么你们会花这么多精力来帮助像我这样的菜鸟免费学习东西,但是我很感谢你这样做。希望有一天,我会精通一些可以回馈的东西。所以这是我的第一个问题。

我已经下载了Python 3.4.1。那里的许多教程似乎都在教python 2.x,但我对3相当满意。我在Windows计算机上。我在newboston的管子上找到了一个视频系列。我正在像他一样使用IDLE。我绊倒的地方是他的版本:

>>> user = "Tuna McFish"
>>> user(0)

'T'

当我这样做时:
>>> user = "Tuna McFish"
>>> user(0)
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
user(0)
TypeError: 'str' object is not callable

(对不起,不确定该网站的格式正确。我在做什么错?)

最佳答案

欢迎来到一般的堆栈溢出和编程。一定要抱有希望,并会通知您在编程时需要非常精确,所有不同的括号都具有不同的含义。在python中,至少具有以下基本含义。

方括号[]用于列表和 slice

参见http://www.dotnetperls.com/list-python

>>> words = ['Some', 'different', 'words']
>>> words[1]
'different'

参见 http://www.dotnetperls.com/slice
>>> words[:2]          # Slice of two first elements
['Some', 'different']

注意! 请注意,方括号也用于取消引用各种内容,例如字典,元组,列表等。

花括号 {}用于dict或set

参见 http://www.dotnetperls.com/dictionary-python
>>> lookup = { 1 : 'First', 2: 'Second', 3: 'Third' }
>>> lookup[1] # NB! Using square brackets for looking up
'First'

http://www.dotnetperls.com/set-python
>>> colors = { 'red', 'green', 'blue'}
>>> 'red' in colors
True

元组,函数,分组等的普通括号 () ...

参见 http://www.dotnetperls.com/tuple-python
>>> block = ( '10th East Street', '30th North Avenue') 
>>> horizontal, vertical = block
>>> horizontal
'10th East Street'
>>> vertical
'30th North Avenue'
>>> block[0] # NB! Using square brackets for dereferencing
'10th East Street'

在函数中,请参见 http://www.dotnetperls.com/def
>>> print('a function call')
a function call

在分组中,请参见“和/或”部分中的 http://www.dotnetperls.com/if-python
>>> a, b, c = True, False, True
>>> a and (b or c)
True

关于python - user(0)追溯(最近一次通话):,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33009118/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com