[ENG] STEEM Security update - added power down alert

by joviansummer original STEEMIT post: https://steemit.com/blog/@joviansummer/eng-steem-security-update-added-power-down-alert STEEM Security - receive STEEM alert messages via Discord Hello, this is @joviansummer(witness: @jswit). STEEM Security code has been revised. Previously, STEEM Security was sending alert message via discord for the following 3 kinds of operations: sending STEEM/SBD to another account changing SP delegation account update Now, power down operation has been added. If there is a power down operation, you will also receive alert message. Please check the original post of the above link for detailed information on how to use the service. Thank you for reading, and have a wonderful day! @joviansummer's STEEM projects @jswit witness: I'm running a STEEM witness node. I'd really appreciate it if you vote for my witness account @jswit. ( https://steemitwallet.com/~witnesses ) [ENG] Introducing @jswit witness project @jsup curation: [ENG] Int...

파이썬에서 소수점 특정 자리수의 반올림, 올림, 내림

by joviansummer
original STEEMIT post: https://steemit.com/blog/@joviansummer/86b984


우선 정수 기준의 반올림, 올림, 내림은 이전에 포스팅했습니다. 아래의 링크입니다.

파이썬에서 수자 반올림, 올림, 내림

파이썬에서 정수가 아니라 소수점 자리에서 반올림, 올림, 내림을 하는 방법입니다.

예를 들어 소수점 세째자리까지 유효 수자로 간주하고 네째자리의 값을 반올림, 올림, 내림하는 경우를 보겠습니다. 반올림은 round() 함수를 아래와 같이 사용할 수 있습니다.

x = 1.3463
y = 1.3469
print(round(x,3))
print(round(y,3))

1.346
1.347

올림과 내림에 사용하는 math.ceil(), math.floor() 함수는 정수 기준이기 때문에 소수점을 기준으로 하려면 아래와 같이 할 수 있겠습니다.

import math

x = 1.3463
x_ceil = math.ceil(x*1000) / 1000
print(x_ceil)

1.347

소수점 세째자리까지 취하고 싶기 때문에 우선 1000을 곱해서 해당 부분까지 정수가 되도록한 후 math.ceil() 함수로 올림을 수행하고, 다시 1000으로 나누어서 결과를 얻었습니다.

내림도 동일한 요령으로 하면 되겠습니다.

import math

y = 1.3469
y_floor = math.floor(y*1000) / 1000
print(y_floor)

1.346


@joviansummer의 스팀 프로젝트

스팀 증인노드를 운영중입니다. @jswit에 증인투표해 주시면 감사하겠습니다.
(https://steemitwallet.com/~witnesses)

jswit 증인 노드 프로젝트를 시작합니다.

jsup 업보팅(upvoting) 서비스 소개

jsup 수혜자 지정 기능 추가

jsup 서비스에 큐레이션 보상 분배 기능이 추가되었습니다.

jSTEEM 프로젝트 - 텔레그램 챗봇으로 구현하는 스팀 블럭체인 탐색기

STEEM.NFT - 디지털 아트 보존 프로젝트

Posted through the AVLE Dapp (https://avle.io)

Comments

Popular posts from this blog

[ENG] jsup 2.0 - make your upvote great again

jsup/avle 보팅 코드 갱신 - 1일1포스팅 강박에서 벗어나기

Nuitka - 파이썬 스크립트를 바이너리 실행 파일로 변환