#๐Ÿ”’ pseudocode,algorithm,flowchart

15 messages ยท Page 1 of 1 (latest)

covert dewBOT
#

@devout wigeon

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

dusky latch
#

If you already have Python, why do you need pseudocode?

Also, what do you mean by "convert python code into algorithm"? The code is an imoplementation of an algorithm.

devout wigeon
#

For coursework

dusky latch
#

Pseudocode isn't standardized. Did they teach you a specific syntax to use when writing pseudocode?

devout wigeon
#

Not much just simple

#

algorithm factorial
input number
num=numberfactorial=1
while number>0 then
factorial=number*factorial
number=number-1
End while
Output Factorial
End Factorial

#

A bit complicated that this

#

Was what we were taught

#

But now we have to write pseudocode for the whole python code

dusky latch
#

That looks like Python, except with End While and such to delimit the blocks.

devout wigeon
#

Is there an website or anything to convert pythoncode into flowchart ?

#

I dont really have a lot of time left to do it manually

covert dewBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.

#

๐Ÿ”’ pseudocode,algorithm,flowchart