반응형
Python :
in_str = input("입력해주세요.\n")
print(in_str + " World!")
Ruby :
puts("입력해주세요.")
in_str = gets.chomp()
puts(in_str + " World!")
알게 된 내용 :
파이썬에서 입력은 input(), 루비에서의 입력은 gets.chomp()
대신 input은 TextHint를 보여줄 수 있지만 gets.chomp는 입력만 받으므로 puts를 통해 입력하라는문자열을 넣어줬음.
출처 - opentutorials.org/
반응형
'[Python & Ruby]' 카테고리의 다른 글
[Python & Ruby] 배열(=컨테이너) (0) | 2020.12.12 |
---|---|
[Python & Ruby] Comment (0) | 2020.12.12 |
[Python & Ruby] 조건문 (Conditional Statement) (0) | 2020.12.11 |
[Python & Ruby] Variable (0) | 2020.12.11 |
[Python & Ruby] STRING (0) | 2020.12.10 |