-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.py
More file actions
58 lines (48 loc) · 1.26 KB
/
1.py
File metadata and controls
58 lines (48 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# from tkinter import *
# w=Tk()
# w.title("Kim Tae Hwan")
# w.geometry('720x480')
# w.mainloop()
# --------------------------------------------------------------------------------------------------
# print(5 < 10)
# print(5 > 10)
# print(5 < 10 or 3 > 10)
# print(5 > 10 and 3 > 10)
# print(not True)
# print(not True and True)
# print(not True or True)
# --------------------------------------------------------------------------------------------------
# name: str = input('이름을 입력하세요 : ')
# print("my name is", name)
# print("my name is " + name)
# --------------------------------------------------------------------------------------------------
# a = input('a = ')
# b = input('b = ')
# a = int(a)
# b = int(b)
#
# a = int(input("a = "))
# b = int(input("b = "))
#
# print('a + b =', a+b)
# print('a - b =', a-b)
# print('a * b =', a*b)
# print('a / b =', a/b)
# --------------------------------------------------------------------------------------------------
# def Hello():
# print("Hello")
# print("KIM")
#
#
# Hello()
# --------------------------------------------------------------------------------------------------
# def Hello(name):
# print('Hi', name)
#
#
# def Hello1(name):
# print(f'Hi {name}')
#
#
# Hello('Kim')
# Hello1('Kim')