如何使用流程图将 "apple" 转换为带有 ascii 码的 "APPLE"

How to convert a "apple"to "APPLE" with ascii code using flowchart

如何使用流程图将 "apple" 转换为带有 ascii 码的 "APPLE" 我用 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)    

不太清楚自己想要什么,但可以试试这个吗?

https://code2flow.com/

我在那里做的,也许这就是您要找的东西? So something like this?