-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Control-flow tutorial #35
Comments
Python Loops and Conditionals TutorialLoopsLoops are one of the most fundamental control structures in programming. They allow a block of code to be repeated multiple times. Python has two types of loops: for and while. For LoopThe for loop is used to iterate over a sequence (list, tuple, dictionary, set, string) or any other iterable object. Iterating over a listfor i in [1, 2, 3, 4, 5]:
print(i) # Prints numbers from 1 to 5 While LoopThe while loop allows the execution of a group of instructions as long as a condition is met (i.e., as long as the condition evaluates to True).
ConditionalsConditionals allow us to check conditions and make our program behave one way or another, according to the results of these conditions. If, Elif, ElseIn Python, the syntax for conditionals is through the reserved words if, elif (else if), and else.
This is a very basic rundown of loops and conditionals in Python. There is much more you can do with them, including nesting loops and conditionals, using break and continue in loops, among other things. However, I hope this gives you a solid foundation upon which you can build. |
@xbz-24 Although obviously GPT generated, I appreciate the willingness to help. This issue refers to control flow with Flyde, of course. If you want to learn more about Flyde and try giving a shot at this, I'd love to guide you through it! |
@GabiGrin I already have the extension, look what I get when I do new visual flow : |
Awesome! Perhaps this issue #8 can help Also, you're welcome to discuss this on Discord - https://discord.gg/qeetahUmgU |
Weird! what is your setup? |
m1 mac :( should I try with linux mint |
Write a tutorial that covers how to do:
The text was updated successfully, but these errors were encountered: