"while loop developer"pug/jade,scss,javascript,python(백엔드)-(창고 튜토리얼 2)

어이, 동료들,
튜토리얼 2입니다.
이전 강좌에서, 우리는loop-pug/jade, scss,javascript,python (백엔드) 을 어떻게 사용하는지 배웠다
이 강좌에서, 우리는 Stack 웹 개발에서basic while loop을 사용할 것이다.
1. 파그/제드
이 pug/jade 강좌에서 우리는 이pug-to-html 변환기를 사용하여 연습할 수 있다.
예1
- var i=0
ul
 while i < 10
  li= i++


2.SCSS
예1
$border: 1;
@while $border < 10+1{
    li:nth-child(#{$border}){
        border: #{$border}px solid red;

    }
    $border: $border+1
}

3.Javascript
while 순환
예1
let li = document.querySelectorAll('li');
let i = 0;
while(i < li.length){
    li[i].style.color = 'yellow';
    console.log(i)
    i++;
}
while 순환do (js)
예2
do{
    li[i].style.color = 'yellow';
    console.log(i)
    i++;
}
while(i < li.length)

'do'와while는 사용하기에 매우 간단합니다.'while'는 조건과'do'를 리셋합니다.
마지막은 파이썬.
4.Python
예1
count = 0
while count < 10:
    print(count)
    count+=1

이것은 자바스크립트와 거의 다를 것이 없어 보이지만python은 두 가지 기본 순환만 있습니다
4
  • 대 4
  • 4

  • 이것은 나의 분류 강좌이니, 네가 좋아하길 바란다.
    만약 당신이 이런 강좌를 좋아한다면, 좋아하세요, 평론.
    고맙습니다.
  • 좋은 웹페이지 즐겨찾기