Comparators3 = 5 10 == 10 12 != 13Boolean operatorsTrue or False (3 = 5) this() and not that()Conditional statementsif this_might_be_true(): print "This really is true." elif that_might_be_true(): print "That is true." else: print "None of the above." # Complete the if and elif statements! def grade_converter(grade): if grade >= 90: return "A" elif grade >= 80 : return "B" elif grade >= 70: retu..
Router interface GigabitEthernet0/0 no ip address duplex auto speed auto ! interface GigabitEthernet0/0.50 encapsulation dot1Q 50 ip address 192.168.5.1 255.255.255.0 ! interface GigabitEthernet0/0.100 encapsulation dot1Q 100 ip address 192.168.0.1 255.255.255.0 Switchinterface FastEthernet0/1 switchport access vlan 100 switchport mode access switchport port-security switchport port-security mac..
Three ways to create strings'Alpha' "Bravo" str(3)String methodslen("Charlie") "Delta".upper() "Echo".lower()Printing a stringprint "Foxtrot"Advanced printing techniquesg = "Golf" h = "Hotel" print "%s, %s" % (g, h) Date and time from datetime import datetime now = datetime.now() print '%s/%s/%s %s:%s:%s' % (now.month, now.day, now.year, now.hour, now.minute, now.second)
CCNA 200-125, ICND1, Sec 4: Config Modes, IOS Help, Intro To VLANs //change host name Switch>enable Switch#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname S1 //usage of tab and ? S1(config)#ho? hostname S1(config)#ho S1(config)#hostname ? WORD This system's network name S1(config)#hostname S2 S2(config)# //exec-timeout 0 0 Switch(config)#li..
원키 고스트 백업과 복원다운로드 []출처 [# - 한글화] 백업1. 프로그램을 실행해 주고, 우측 위에 설치(I)를 체크해줍니다. 2. 팝업이 뜨는데, 아무것도 건드리지 않고 확인버튼 클릭하면 됩니다. 3. 확인버튼 클릭. 4. 실행버튼 클릭. 5. 예 클릭. 자동으로 재부팅될텐데, 아래의 고스트화면 나올때까지 아무것도 안건드리셔도 됩니다. 6. 고스트로 넘어와서 자동 백업되는 과정이고, 컴퓨터 성능과 용량에 따라 오래걸릴수도 있습니다.가만히 놔두면 끝나고 재부팅해서 윈도우로 부팅됩니다. 백업 완료. 복원1. 윈도우 부팅중에 이 화면이 나오면 2번째에 있는 OneKey Ghost를 선택해주세요.3초안에 키보드나 마우스를 움직이지 않으면 자동으로 윈도우 10으로 부팅됩니다. 2. 마우스로 클릭 또는 키보드..