- 请问以下代码会打印多少次“我爱鱼C!”
while ‘C’:
print(‘我爱鱼C!’)
无数次
- 请问以下代码会打印多少次“我爱鱼C!”
i = 10
while i:
print(‘我爱鱼C!’)
i = i - 1
10
- 请写出与 10 < cost < 50 等价的表达式
10 < cost and cost<50
- Python3 中,一行可以书写多个语句吗?
可以,中间加分号;后就可以
>>> print('I love fishc');print('very much!')
- Python3 中,一个语句可以分成多行书写吗?
可以,使用反斜杠\或者括号分解成几行
>>>(3 > 4 and
>>>1 < 2)
#或者
>>>3 > 4 and \
>>>1 < 2
- 请问Python的 and 操作符 和C语言的 && 操作符 有何不同?【该题针对有C或C++基础的朋友】
python中没有&&操作符,python中的and,返回值不一样,如: 对于and, 如果有一个为假值,则返回0,若全为真,返回最后一个真值 对于or 如果全部都是假值,则返回0,否则返回第一个真值
>>> 10 and 0 and 20
0
>>> 10 and 5 and 3
3
>>> 10 and 5 and 3
3
####
>>> 0 or 3 or 10
3
>>> 0 or 10 or 3
10
- 听说过“短路逻辑(short-circuit logic)”吗?
逻辑操作符有个有趣的特性:在不需要求值的时候不进行操作。这么说可能比较“高深”,举个例子,表达式 x and y,需要 x 和 y 两个变量同时为真(True)的时候,结果才为真。因此,如果当 x 变量得知是假(False)的时候,表达式就会立刻返回 False,而不用去管 y 变量的值。
这种行为被称为短路逻辑(short-circuit logic)或者惰性求值(lazy evaluation),这种行为同样也应用与 or 操作符,这个后边的课程小甲鱼会讲到,不急。
实际上,Python 的做法是如果 x 为假,表达式会返回 x 的值(0),否则它就会返回 y 的值
编程题
- 为用户提供三次机会尝试,机会用完或者用户猜中答案均退出循环
# 第一部分
# 引入随机数 random模块 把8替换掉
import random
randAnswer = random.randint(1,10)
times = 3
temp = input ("随意猜一个数字(最多三次机会):")
num = int (temp)
while num!=randAnswer and times>0:
if(num>randAnswer):
print("大了\n")
else:
print("小了\n")
##end if
times-=1
if(times>0):
print("还有"+str(times)+"次机会")
temp = input ("重新猜一个数字")
num=int(temp)
else:
print("没机会了")
if num==randAnswer:
print("right")
##end while
print("游戏结束")
- 实现以下功能的代码
n=int(input("请输入一个数:"))
i=1
while i<=n:
print(i)
i+=1
- 尝试写代码实现以下截图功能
n=int(input("请输入一个数:"))
i=n
while i>0:
str1=" "*i
str1+="*"*i
print(str1)
i-=1
del str1
##print(n)