Looping and Skipping

Sort by

recency

|

261 Discussions

|

  • + 0 comments

    seq 1 2 99

  • + 0 comments

    printf "%s\n" {1..100..2}

  • + 0 comments

    Tote bags explores looping and skipping, creative techniques used in crafting, weaving, or designing patterns on bags. These methods allow for unique textures, decorative accents, and enhanced durability, adding aesthetic and functional value to each piece. By experimenting with different materials, stitches, and designs, artisans and brands can create standout tote bags that attract attention. Looping and skipping elevate ordinary bags into stylish, customized accessories that combine practicality with artistic expression.

  • + 0 comments

    for i in {1..100..2} do echo $i done

  • + 1 comment
    for((i=1; i<=99; i++))
    do
      if (( i % 2 == 1 ))
      then
        echo "$i"
       fi
    done