- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在努力完成这个挑战:
Write a program that allows the user to enter the grade scored in a programming class (0-100). If the user scored a 100 then notify the user that they got a perfect score.
★ Modify the program so that if the user scored a 90-100 it informs the user that they scored an A
★★ Modify the program so that it will notify the user of their letter grade 0-59 F 60-69 D 70-79 C 80-89 B 90-100 A
到目前为止我试过的是:
#!/usr/bin/python
import random
a = lambda: random.randint(0, 100)
if a == 100:
print "You have a perfect score"
if a == range(90, 99):
print "You have scored an A"
if a == range(80, 89):
print "You have scored a B"
if a == range(70, 79):
print "You have scored a C"
if a == range(60, 69):
print "You have scored a D"
if a == range(0, 59):
print "You have scored an F"
不确定我做错了什么,但我正在运行 Ubuntu 13.10,当我尝试在终端中运行它时会发生这种情况:
blurr@blurr-pc:~/code$ chmod u+x gradingprogram.py
blurr@blurr-pc:~/code$ ./gradingprogram.py
程序根本不运行。
最佳答案
程序运行了,但是没有产生任何输出,因为你实际上是在比较一个函数和一个列表,所以 if
都没有。声明适用。您的代码存在一些问题:
a
是一个生成随机数的函数,而不是随机数本身。要么删除 lambda:
, 或调用 a()
并将结果分配给某个变量。a = int(raw_input())
a
在范围内,使用 in
关键字,即 if a in range(90, 99)
, 或者更好(更有效),使用 if 90 <= a < 100
关于python - 程序根本不运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22509683/
我遇到了一个似乎很独特的问题。我的 NSUbiquitousKeyValueStore 在模拟器中的启动之间根本不起作用。也就是说,我什至不是在谈论 iCloud 同步或类似的东西,我无法让它通过下面
首先,我使用的是 WiX 版本 3.5.2519.0,但我也在最新的 3.6 版本上测试了它,结果相同。 我很难确定 PatchFamily 究竟能过滤掉 torch 生成的差异的某些部分。按照手册中
我可以获取要呈现的“帮助主题”标题,但无法获取我定义的任何FIXTURES。 {{#each model}} 中的任何内容都不会渲染。这是我第一次使用 Ember,所以任何东西(字面意义上的任何东
我一直在尝试设置custom ajaxTransports for jQuery在我们的产品的某些场景下缩短某些工作流程。然而,我在让这些传输受到尊重方面取得了零成功(而我有很多工作 custom a
为什么纯无类型 lambda 演算经常被描述为无法使用? 有了合适的函数库,它会不会与任何其他函数式语言大致相同? 最佳答案 速度不是大问题。例如,您可以决定使用教堂数字但优化实现,以便像往常一样表示
我是一名优秀的程序员,十分优秀!