python小程序源码_小程序源码开源

hacker|
116

文章目录:

用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的源代码显示出来?

你把代码保存在一个文件里,

然后读取那个文件,打印就可以了

4条大神的评论

  • avatar
    访客 2022-07-02 下午 05:31:53

    " is a sentence with ",input.count(' ')," spaces"python的一个小程序怎么写?num1 = int(input())num2 = int(input())sum_all = 0for i in ra

  • avatar
    访客 2022-07-02 下午 09:03:45

    a string with length ",len(input) else: print input," is a sentence with ",input.count(' '),"

  • avatar
    访客 2022-07-03 上午 12:50:38

    h ",len(input) else: print input," is a sentence with ",input.co

  • avatar
    访客 2022-07-02 下午 11:39:45

    接得到源码。如果是以exe形式发布的,需要进行反编译。Python简单小程序,十几行编码而已。while True: input = raw_input('Please enter someth

发表评论