fork download
  1. # your code goes here
  2. print("hello'world'")
  3.  
  4. #기본 연산
  5. x=3
  6. y=5
  7. print(x+y)
  8.  
  9. a=1+2j
  10. b=3-4j
  11. print(a.real)
  12.  
  13. c=3
  14. d=4
  15. print(c**d)
  16.  
  17. #문자의 변수
  18. title="chris & python"
  19. print("title is "+title)
  20.  
  21. import math
  22. print(math.ceil(2.24))
  23. print(math.floor(2.24))
  24. print(math.pow(2,10))
  25. print(2**10)
  26. print(math.pi)
  27. #ceil<---올림 명령어
  28. #floor<---내림 명령어
  29. #pow<---승을계산하는 먕령어(2의 10승)
  30. #pi<---원주율파이를 보여줌
  31.  
Success #stdin #stdout 0.03s 9984KB
stdin
Standard input is empty
stdout
hello'world'
8
1.0
81
title is chris & python
3
2
1024.0
1024
3.141592653589793