코딩Coding
-
파이썬 아나콘다(Anaconda)심화 사용법 정리(1)-초급은 문서 안에 링크 클릭코딩Coding/Mojo★Python파이썬 2020. 6. 25. 12:51
https://niceman.tistory.com/175파이썬 아나콘다(Anaconda) - 심화 사용법 정리(1) - list, search 명령어아나콘다(Anaconda) - 기본 설명 안녕하세요. 좋은사람 입니다. 작년에 아나콘다 기초 명령어 관련 포스팅을 한 후 많은 분들이 질문을 주시고 피드백하는 과정속에서 관련 내용을 더욱 심도있게 �niceman.tistory.com
-
Python ==과 is의 차이코딩Coding/Mojo★Python파이썬 2020. 6. 24. 13:13
https://jsp-dev.tistory.com/m/130Python ==과 is의 차이Python에서 ==과 is은 비슷해보이지만 다른 의미를 가지고 있습니다. 결론부터 이야기하면 ==은 객체가 가지고 있는 값 비교이고 is은 객체가 같은지를 비교하는 것입니다. 예를 들어보겠습니다. strjsp-dev.tistory.com https://blog.metafor.kr/162(python)'is None'과 '==None'의 차이점특정한 값이 있는지를 검사할 때 자주 사용하게 되는 문법인 is None과 ==None. 값이 넘어오고나 전처리 과정에서 이 값이 존재하는지를 확인하고 싶을 때 주로 사용하게 된다. http://jaredgrubb.blogspot.cblog.metafor.kr
-
Python_if_elif_else예제코딩Coding/Mojo★Python파이썬_연습 2020. 6. 23. 22:57
num = float(input("Enter a number: ")) if num > 0: print("Positive number") elif num == 0: print("Zero") else: print("Negative number") 결과 https://www.programiz.com/python-programming/examples/positive-negative-zero Python Program to Check if a Number is Positive, Negative or 0 Source Code: Using if...elif...else num = float(input("Enter a number: ")) if num > 0: print("Positive number") elif nu..
-
Python_계산기초급코딩Coding/Mojo★Python파이썬_연습 2020. 6. 21. 20:36
print(" 계 산 기") print(" + - * / ^ %") print("더하기,빼기, ,곱하기, 제곱, 나누기,나머지 구하기") a = int(input("첫번째 숫자 : ")) b = int(input("두번째 숫자 : ")) result = a + b print(a, " + ", b, " = ", result) result = a - b print(a, " - ", b, " = ", result) result = a * b print(a, " * ", b, " = ", result) result = a ** b print(a, " ** ", b, " = ", result) result = a / b print(a, " / ", b, " = ", result) result = a % b pri..