鱼C论坛

 找回密码
 立即注册
查看: 1884|回复: 9

[已解决]救命 搞不懂代码python

[复制链接]
发表于 2020-8-3 21:30:20 | 显示全部楼层 |阅读模式

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

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

x
count = 3
password = 'Fish.com'

while count:
    passwordenetered = input('please enter password:')
    if passwordenetered == password:
        print('correct!')
        break
    elif '*'in passwordenetered:
        print('please re-enter password without *,\
you have',count,'chances')
        continue
    else:
        print('please re-enter password,you have ',count - 1,'chances')
    count -= 1

请问这个count是内置函数的count吗?为什么换成别的比如number = 3 就无法运行?
另外 在print里的count 一定要写成',count,'的形式吗?
谢谢各位大佬
最佳答案
2020-8-3 21:35:25
本帖最后由 Twilight6 于 2020-8-4 00:38 编辑



请问这个count是内置函数的count吗?


不是,这里代码只是个普通的变量名,但是 Python 确实有个方法为 count ,用来统计元素个数的

为什么换成别的比如number = 3 就无法运行?


可以运行的,如果你要替换代码中的一个变量,那么代码中的所有 count 都要一起改成 number 的

帮你改了下:
number = 3
password = 'Fish.com'

while number:
    passwordenetered = input('please enter password:')
    if passwordenetered == password:
        print('correct!')
        break
    elif '*'in passwordenetered:
        print('please re-enter password without *,\
you have', number, 'chances')
        continue
    else:
        print('please re-enter password,you have ', number - 1, 'chances')
    number -= 1

另外 在print里的count 一定要写成',count,'的形式吗?


不一定的,可以格式化输出和转为字符串拼接比如:

% 百分号格式化
print('please re-enter password without *,\
you have %d chances'%count)


f-string 格式化
print(f'please re-enter password without *,\
you have {count} chances')


format 格式化
print('please re-enter password without *,\
you have {} chances'.format(count))


字符串拼接
print('please re-enter password without *,\
you have '+str(count)+' chances')


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

使用道具 举报

发表于 2020-8-3 21:34:23 | 显示全部楼层
本帖最后由 zltzlt 于 2020-8-3 21:36 编辑

1. count 是一个随意取的变量名,可以换成别的,但要注意把代码别的地方的所有的 count 换成定义时取的变量名

2. 不一定,也可以用加号拼接,但注意要把 count 转成字符串才能和字符串拼接:
count = 3
password = 'Fish.com'

while count:
    passwordenetered = input('please enter password:')
    if passwordenetered == password:
        print('correct!')
        break
    elif '*' in passwordenetered:
        print('please re-enter password without *,\
you have' + str(count) + 'chances')
        continue
    else:
        print('please re-enter password,you have ', count - 1, 'chances')
    count -= 1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-3 21:35:25 | 显示全部楼层    本楼为最佳答案   
本帖最后由 Twilight6 于 2020-8-4 00:38 编辑



请问这个count是内置函数的count吗?


不是,这里代码只是个普通的变量名,但是 Python 确实有个方法为 count ,用来统计元素个数的

为什么换成别的比如number = 3 就无法运行?


可以运行的,如果你要替换代码中的一个变量,那么代码中的所有 count 都要一起改成 number 的

帮你改了下:
number = 3
password = 'Fish.com'

while number:
    passwordenetered = input('please enter password:')
    if passwordenetered == password:
        print('correct!')
        break
    elif '*'in passwordenetered:
        print('please re-enter password without *,\
you have', number, 'chances')
        continue
    else:
        print('please re-enter password,you have ', number - 1, 'chances')
    number -= 1

另外 在print里的count 一定要写成',count,'的形式吗?


不一定的,可以格式化输出和转为字符串拼接比如:

% 百分号格式化
print('please re-enter password without *,\
you have %d chances'%count)


f-string 格式化
print(f'please re-enter password without *,\
you have {count} chances')


format 格式化
print('please re-enter password without *,\
you have {} chances'.format(count))


字符串拼接
print('please re-enter password without *,\
you have '+str(count)+' chances')


想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 2 反对 0

使用道具 举报

发表于 2020-8-3 22:20:32 | 显示全部楼层
Twilight6 发表于 2020-8-3 21:35
不是,这里代码只是个普通的变量名,但是 Python 确实有个方法为 count ,用来统计元素个数的

这个也太强了....
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-4 11:48:33 | 显示全部楼层
就是一个变量名;
就是一种输出格式,其他的方式也可以。
建议看看本办法学python这本书,
...
刚才那句说错了,
建议看看《零基础入门学习python》这本书
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-4 11:57:53 | 显示全部楼层
陈浩楠 发表于 2020-8-4 11:48
就是一个变量名;
就是一种输出格式,其他的方式也可以。
建议看看本办法学python这本书,

好的感谢!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-4 12:00:18 | 显示全部楼层

没事,等外卖中, 就翻了翻鱼C, 好久没来了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-4 12:00:55 | 显示全部楼层

什么太强了...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-4 15:41:18 | 显示全部楼层
本帖最后由 MangoF 于 2020-8-4 15:46 编辑

前面两位已经回答的很充足了
我也复习下

count不是内置函数,只是临时定义的一个变量,list1.count(1), str1.count('a'), 这种才是内置函数

因为你只换了一处,count作为临时变量,你改了定义符号,那么接下来使用的符号也都要统一哈,不然可定会报错,未定义count

不一定,可以使用格式化字符、拼接字符的形式,不过这种最简单,另外,建议该加空格的地方加空格,print里面里面的字符串尽量对齐,或者直接用一行就好了,不然一下子不好看懂——代码的简洁性

print('please re-enter password without *, \
         you have', count, 'chances')

print('please re-enter password without *, you have', count, 'chances')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-5 07:32:15 | 显示全部楼层

问题如果已经解决,记得设置最佳答案
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-11 08:41

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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