copytextpop-up
def myfunc(age=22, name): pass
def add(x, y): return x + y
time_str = '2019-12-1'time_str = time_str.split('-')year = int(time_str[0])month = int(time_str[1])date = int(time_str[2])
time_str = '2019-12-1' time_str = time_str.split('-') year = int(time_str[0]) month = int(time_str[1]) date = int(time_str[2])
x = 10 def change_x(): global x x = 'hello' print(x)