>>>a=5
>>>b=a
>>>a*b
然后回车键,程序会输出结果为:( )
ji tu = int (input(‘请输入鸡兔总数:’))
tui = int (input(‘请输入腿的总数:’))
tu = (tui-ji tu*2)/2
if int (tu) = tu:
print (‘鸡:’,ji tu-tu, ‘兔:’,tu)
else:
print (‘数据输入不正确’)
import numpy as np
import matplotlib.pyplot as plt
x=np.arange(-1,2,0.01)
y=x**5+x**4+x-3
plt.plot(x,y)
plt.title('x^5+x^4+x-3')
plt.xlabel('X')
plt.ylabel('Y')
plt.show( )
下列选择错误的是( )
a=1
if a<0:
print("a<0")
elif a<1:
print("0<a<1")
print("a>=1")
①至少有8个字符的长度
②不包含完整的单词和有规律的数字或字母组合
③包含下列四类字符的每一种:大写字母,小写字母、数字和键盘上的其他符号
则下列密码符合强保密性要求的是:( )
a=35
b=94
for x in:
if 2*x+4*y==b:
print("鸡有"+str(x)+"只","兔有"+str(y)+"只")
n=input(“请输入一个实数:”)
n2= math. floor(float(n))
print(n2)
score=int(input("请输入一个分数"))
if 100>=score>=90:
print("A")
if 90>score>=80:
print("B")
if 80>score>=60:
print("C")
if 60>score>=0:
print("D")
if score<0 or score >100:
print("输入错误!")