태지쌤

로봇 & 코딩교육 No.1 크리에이터

파이썬/exercise 26

[유데미 Angela Yu Python] 33일차. API 엔드포인트 ISS 머리 위 알리미

import requests response = requests.get(url="http://api.open-notify.org/iss-now.json") # print(response) data = response.json() longitude = data["iss_position"]["longitude"] latitude = data["iss_position"]["latitude"] iss_position = (longitude, latitude) print(iss_position) from tkinter import * import requests def get_quote(): response = requests.get("https://api.kanye.rest") data = response.js..

파이썬/exercise 2023.02.28

[파이썬] 숫자 맞추기 게임

import random random_number = random.randint(1,100) game_count = 1 game_is_on = True while game_is_on: user_input = int(input("1~100사이의 숫자를 입력 : ")) if user_input > random_number: print("down") elif user_input < random_number: print("up") else: print(f"success : {game_count}") game_is_on = False game_count += 1 문자를 입력했을 때 발생하는 에러를 수정하기 위해 예외처리 개념을 적용 try : 에러가 발생하지 않았을 때 동작 except : try문 안의 코드에서..

파이썬/exercise 2023.01.26

10-1. python 딕셔너리와 함수 결합

def add(n1, n2): return n1 + n2 def sub(n1, n2): return n1 - n2 def mul(n1, n2): return n1 * n2 def div(n1, n2): return n1 / n2 operations ={ "+":add, "-":sub, "*":mul, "/":div } num1 = int(input("첫번째 수를 입력하세요 : ")) for o in operations: print(o) operation_symbol = input("연산자를 입력하세요 : ") num2 = int(input("두번째 수를 입력하세요 : ")) func = operations[operation_symbol] answer = func(num1, num2) print(f"{nu..

파이썬/exercise 2023.01.05

8-1. python function - math ceil

def greet(): print("hi") print("hi") print("hi") greet() def greet_with_name(name): print(f"hi {name}") greet_with_name("TJ") 페인트 면적 구하기 파이썬에서 올림 구할 때 math에서 ceil #Write your code below this line 👇 import math def paint_calc(height, width, cover): result = math.ceil(height * width / cover) print(f"You'll need {result} cans of paint.") #Write your code above this line 👆 # Define a function called..

파이썬/exercise 2023.01.04
반응형