如何使用流程图将带有“ ASCII”代码的“苹果”转换为“苹果”

时间:2018-12-19 14:26:26

标签: ascii uppercase converters

如何使用流程图将带有“ ASCII”代码的“苹果”转换为“苹果” 我用python编写了它,如何将其转换为流程图

sum=''
i=1
while i<=5:
    a1=input("plz input character : ")
    a=chr(ord(a1)-32)
    sum=sum+a
    i=i+1
print (sum)    

1 个答案:

答案 0 :(得分:0)

不完全知道您想要什么,但可以尝试一下?

https://code2flow.com/

我在那里做过,也许这就是您想要的? So something like this?