1楼:匿名用户
defgetthickness(iorigthickness,ifoldcount):
multiple=1
foriinrange(ifoldcount):
multiple*=2
return"%.6f"%float(iorigthickness*multiple)
times=input("inputfoldingtimes:")
try:
times=int(times)
except:
print"invalidinput!apositiveintegerisrequired."
else:
printgetthickness(1/float(20000),times)
for python 2。
简单的python问题 求写出过程 谢谢 20
2楼:匿名用户
temperature=t=-9.5
wind_speed=w=1.9
relative_humidity=h=91v=6.112*10**(7.5*t/237.
7+t)*h/100deffeels_like(temperature,wind_speed,relative_humidity):
windchill=13.12+0.6125*t-11.37*w**0.16+0.3965*t*w**0.16
humidex=t+5/9*(v-10)
ifwind_speed<0:
print("thewindspeedmussbenon-negative!")
ift>=15andhumidex-t>1:
feels_like_temperature=humidexift<15andt-windchill>1:
feels_like_temperature=windchillelse:
feels_like_temperature=treturn(feels_like_temperature)
求这个题目的python编写,请尽量用简单的python语言,简单明了,谢谢!
3楼:匿名用户
你看下面的**行不行:
#阶乘defjiecheng(n):
rt=1
foriinrange(1,n+1):
rt*=i
returnrt
#转成二进制
definttobin(n):
rt=''
while(n>0):
rt=str(n%2)+rt
n=int(n/2)
returnrt
#最后一个1的位置
defindex1(s):
ns=s[::-1]
wz=len(s)-ns.index('1')returnwz
ab=jiecheng(10)
print(ab)
cd=inttobin(ab)
print(cd)
ef=index1(cd)
print(ef)
按照这个实验指导的步骤把这个程序编出来,谢谢,用的python语言
4楼:吾皇抢我篮板王
......这也太简单了吧..
5楼:匿名用户
def conjecture(n):
c = 0
while n != 1:
c += 1
if n % 2 == 0:
n = int(n/2)
print "n is even number, %s transformation for results is : %d" %(c,n)
elif n % 2 == 1:
n = int(n*3+1)
print "n is even number, %s transformation for results is : %d" %(c,n)
a = int(raw_input('please input digital:'))
conjecture(a)
求这个题目的python编写,我是初学者,所以请尽量用简单明了的python语言,谢谢!
6楼:天刚没亮
idcard = raw_input('input id card:')
sum = 0
for i in range(0, len(idcard)-1):
sum += int(idcard[i]) * 2**(18-i-1) % 11
sum = sum % 11
last = ['1', '0', 'x', '9', '8', '7', '6', '5', '4', '3', '2']
if idcard[-1] == last[sum ]:
print true
else:
print false
7楼:
defcheck(cardno):
iflen(cardno)!=18:
returnfalse
encoding="10x98765432"
sum=0
foriinxrange(17):
sum+=int(cardno[i])*(2**(18-i-1)%11)
returncardno[-1]==encoding[sum%11]
if__name__=="__main__":
printcheck("320102199310270036")
求python 和 java 这两种语言的区别…能多详细就多详细………谢谢谢谢谢谢谢……
8楼:转移不是撤退
java 要编
bai译后才能运行,dupython 直接解释运行。
java 引入包后,调zhi用包的dao方式比 python 要简洁些,而 python 直接回 import 包则是显式的,不会出现同答名模块/类冲突的问题,如果使用“from module import function”的话,在使用的时候也很简洁却要求必须有针对性地引用函数。
java 里的块用大括号对包括,python 以冒号 + 四个空格缩进表示。
java 的类型要声明,python 的类型不需要。
java 基本上是类/结构操作,也就是面向对象处理,python 可以以独立的函数模块来处理逻辑而不需要放到类中。
java 每行语句以分号结束,python 可以不写分号。
java 中的字符串以双引号括起来,python 中单引号或双引号都可以(与 javascript 一样)。
实现同一功能时,java 要敲的键盘次数一般要比 python 多。
求 python编程实践 电子书 谢谢
9楼:匿名用户
http://download.csdn.***/detail/thinkerstone/8484995
求任意两数之差,用python语言怎么编。本人大一,备战期末,望简洁,谢谢^ω^
10楼:风起雪落
defcha(x,y):
print(x-y)
x=float(input("请输入第一个数:"))y=float(input("请输入第二个数:"))cha(x,y)
求各位大神把下面的c语言程序编码翻译成python语言,谢谢的!!急呀!!
11楼:天刚没亮
price1 = 4.5
price2 = 5.5
price3 = 5.5
thing1 = raw_input('please input the first thing you wang to bug\n')
print thing1
num1 = int(raw_input('please input the number you need\n'))
print num1
print 'the price is %f' % float(num1*price1)
thing2 = raw_input('please input the first thing you wang to bug\n')
print thing2
num2 = int(raw_input('please input the number you need\n'))
print num2
print 'the price is %f' % float(num2*price2)
thing3 = raw_input('please input the first thing you wang to bug\n')
print thing3
num3 = int(raw_input('please input the number you need\n'))
print num3
print 'the price is %f' % float(num3*price3)
print 'the final price is %f' % float(num1*price1+num2*price2+num3*price3)
12楼:匿名用户
很愿意帮助你完成方面其他方式交流吗
求导数题,求解答过程谢谢,求导数,求解题过程谢谢
1楼 科学达人 把它放到e上,变成y e 1 x lnx 然后用复合函数求导,结果没算错的话是x 1 x 2 1 lnx 求导数,求解题过程谢谢 2楼 多开软件 解 2 题, lim n n n 1 n n 1 n n lim n n 1 n 1 1 n 2 n, 而lim n n 1 n 1 1 ...
求这道题的解题过程谢谢,求这道题的详细解题过程,谢谢!
1楼 就一对相似三角形,两条平行线,初二知识纯几何解决,计算很简单,基本上没有什么弯路,那条垂线段也是应知应会,这种题不会做,中考就有问题 上面是原来解答,一字未改,下面是恢复显示后提交的修改错了一个字符,第二行应该 be ab df af 1 6, 就不重做了 求这道题的解题过程,谢谢。 2楼 匿...
高数题求讲解!谢谢!!过程,大一的高数题,求详细过程!谢谢!
1楼 匿名用户 分母分子的最高次幂都是100,所以比较分子分母系数比即可。分子分母系数比为8 则a的5次方是8,所以a是8开5次方。 大一的高数题,求详细过程!谢谢! 2楼 吉禄学阁 本题要对方程两边取对数,再求导数,同时用到幂函数 指数函数的导数公式,具体步骤如下图所示 具体步骤 注意,本题同时涉...