文章目录:
- 1、用Python2.7.1写的小程序可以反编译得到它的源代码吗
- 2、Python简单小程序,十几行编码而已。
- 3、python的一个小程序怎么写?
- 4、python可以开发什么?谁有python小程序的源代码,求一个源代码?观摩观摩下
- 5、如何把PYTHON的源代码显示出来?
用Python2.7.1写的小程序可以反编译得到它的源代码吗
可以啊,要看他的发布形式,如果是以脚本形式发布的,那就可以直接得到源码。
如果是以exe形式发布的,需要进行反编译。
Python简单小程序,十几行编码而已。
while True:
input = raw_input('Please enter something: ')
try:
input = int(input)
if input%2 == 0:
print input," is even number."
else:
print input," is odd number."
except:
input = str(input)
if not ' ' in input:
print input," is a string with length ",len(input)
else:
print input," is a sentence with ",input.count(' ')," spaces"
python的一个小程序怎么写?
num1 = int(input())
num2 = int(input())
sum_all = 0
for i in range(num1,num2+1):
if i % 3 == 0 or i % 5 == 0:
sum_all += i
print(sum_all)
python可以开发什么?谁有python小程序的源代码,求一个源代码?观摩观摩下
桌面程序,web都可以,还有比如现在讲的多的人工智能,神经网络....源码可以去找一些开源代码,搜索一下,蛮多的。
如何把PYTHON的源代码显示出来?
你把代码保存在一个文件里,
然后读取那个文件,打印就可以了
" is a sentence with ",input.count(' ')," spaces"python的一个小程序怎么写?num1 = int(input())num2 = int(input())sum_all = 0for i in ra
a string with length ",len(input) else: print input," is a sentence with ",input.count(' '),"
h ",len(input) else: print input," is a sentence with ",input.co
接得到源码。如果是以exe形式发布的,需要进行反编译。Python简单小程序,十几行编码而已。while True: input = raw_input('Please enter someth