1.golang的源码文件可以随意命名,但是属于同一个包的源文件必须声明 package base 2.golang的包引入规则 import ( "fmt" #系统包直接写名字 "github.com/user/stringutil" #其余包 写 src 下的绝对路径 ) go help importpath A few common code hosting sites have special syntax: Bitbucket (Git, Mercuria…
文章是从stackoverflow翻译过来的,原文地址:Relative imports for the billionth time 本文要在原理上解决 python当中相对包导入出现的问题. 问题描述 在win7.32位的电脑上,运行python2.7.3,经常会出现"Attempted relative import in non-package"这样的问题. 为了解决这个问题,我(提问的人)搜索了以下网站,当然还有更多的网站 http://www.python.org/dev…