Open youngyoungsunny opened 3 years ago
num_list=[]
for i in range(9):
num_list.append(int(input()))
print(max(num_list)) print(num_list.index(max(num_list))+1)
from sys import stdin
n = int(stdin.readline()) #n = int(input()) 보다 빠름.
li = list(map(int, stdin.readline().split())) #numlist = list(map(int, input().split())) 보다 빠름.
list안에 요소가 각각 몇 개 있는지 구할 때 (백준 2577)
def score():
global result
sum = 1 #곱셈할거라서
n1 = int(input())
n2 = int(input())
n3 = int(input())
result = list(str(n1*n2*n3))
for i in range(10):
print(result.count(str(i))) #지금 result가 list인데 그냥 곱셈의 결과값만 들어가있다. 그러므로 str(i)가 result에 몇개 인지를 count해줘야 하므로 이렇게 씀.
n = input()
print(ord(n))
정수 거꾸로 하기
n1, n2 = input().split()
n1 = int(n1[::-1])
n2 = int(n2[::-1])
print(n1 if n1 > n2 else n2)
str = 'abcde'
answer = list(str)
print(answer) #['a', 'b', 'c', 'd', 'e']
str = '12345'
answer = list(str).reverse() # ['5', '4', '3', '2', '1']
return list(map(int, answer)) //5,4,3,2,1 로 변환. (정수)
str = 'a,b,c,d,e'
answer = str.split(',')
print(answer) #['a', 'b', 'c', 'd', 'e']
str = 'Hello World!'
answer = list(str[0:5]) #['H', 'e', 'l', 'l', 'o']
answer = list(str[6]) #['W', 'o', 'r', 'l', 'd']
문자열의 역순으로 리스트에 저장하고 싶다면?
str = 'Hello'
answer = list(str([-1: :-1])) //역순으로 넣음. index 시작이 -1이면 맨 뒤부터 시작.
print(answer) #['o', 'l', 'l', 'e', 'H']
list에 원소 추가 시, append()
임의의 변수 받을 때
두 수 받을 때
list받을 때