'if-else-condition'은pug/jade,scss,javascript,python(백엔드)-(창고 강좌3)

어이, 친구들,
우리는 창고에서 공부하는 조건을 사용할 것이다.Open up git bash in the current folder및 유형code . index.pug style.scss script.js hello.py파일을 만들고 Visual Studio 코드 편집기를 엽니다.
  • 인덱스.파그
  • 스타일.scss
  • 스크립트.js
  • 안녕하세요.py
  • 파그/제드
    pug/jade 컴파일러에 대해 현재 우리는 비주얼 스튜디오 코드를 사용하여 pug를 html 코드로 직접 컴파일할 것입니다.

    예제 1
    - var time= true
    if time == true
     h1 I am true
    else
     h1 I am false
    
    Scss
    예제 1
    @mixin bdr($px,$type,$color,$boll: true){
      @if $boll{
        border: $px $type $color;
        border-radius: $px;
      }
      @else{
        border: $px $type $color
      }
    }
    
    
    .demo{
      width: 200px;
      height: 200px;
      background: red;
      @include bdr(20px,solid,black);
    
    }
    
    Javascript
    예제 1
    let time = true;
    if(time==true){
      console.log(" I am true")
    }else{
      console.log(" I am false")
    }
    
    
    구렁이
    예제 1
    name = ["nikhil","sonchoy","shanto"]
    if "nikhil" in name:
        print("Name has nikhil name")
    elif:
        print("Name has no nikhil name")
    
    
    예제 2
    country = True
    if country == True or country != False:
        print("Country is true")
    elif:
        print("Country is false")
    
    많은 예가 있지만, 우리는 단지 매우 기본적인 개념을 사용하여 진일보할 뿐이다.
    만약 네가 이 문장에 흥미가 있다면, 평론해 봐, 나를 따라와.
    감사합니다.

    좋은 웹페이지 즐겨찾기