최신 아나콘다는 최신 텐서플로우워를 지원하지 않는다https://repo.continuum.io/archive/ Anaconda3-5.2.0-Windows-x86_64.exe 관리자권한으로설치 실습코드# -*- coding: utf-8 -*-"""Spyder Editor This is a temporary script file.""" #정수형a=1print(a,type(a))#실수형b=1.0print(b,type(b))#문자열c="파이썬"print(c,type(c))#리스트[] 가변 객체d=[1,2,1.0,"인공지능",[5,6]]print(d,type(d))#튜플 불변객체e=(1,2,3.0,"인공지능2")print(e,type(e))d[3]="머신러닝"#e[3]="딥러닝"print("리스트:",d[3],..