How to convert a "apple"to "APPLE" with ascii code using flowchart i wrote it with python put how can i convert it to flowchart
sum=''
i=1
while i<=5:
a1=input("plz input character : ")
a=chr(ord(a1)-32)
sum=sum+a
i=i+1
print (sum)
How to convert a "apple"to "APPLE" with ascii code using flowchart i wrote it with python put how can i convert it to flowchart
sum=''
i=1
while i<=5:
a1=input("plz input character : ")
a=chr(ord(a1)-32)
sum=sum+a
i=i+1
print (sum)
Don't exactly know what you want but maybe try this?
I did it there and maybe this is what you are looking for? So something like this?