镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code >>> print("hello world\n" * 8) 2 show hello world hello world hello world hello world hello world hello world hello world hello…
镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code aCollection=range(1,10,1) for item in aCollection: print(item) 2 show ------------------------------------------博文的精髓,在技术部分,更在镇场一诗.Python是优秀的语…
镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code name=['燃灯古佛','释迦摩尼佛','弥勒佛'] print('1\n') print(1) for item in name: print(item) 2 show ------------------------------------------博文的精髓,在技术部分,更…
我最近刚学java,今天编程的时候就遇到一个棘手的问题,就是关于判断两个字符串是否相等的问题.在编程中,通常比较两个字符串是否相同的表达式是“==”,但在java中不能这么写.在java中,用的是equals(); String name = new String("sunzhiyan"); String age = new String("sunzhiyan"); if(name ==age){ System.out.print("相等");…
print()中end==""的用法 例子:用Python3输出九九乘法表: for i in range(1,10): for j in range(1,i+1): s=i*j print ('%d*%d==%d\t'%(i,j,s),end="") print("")#换行 其中第4行输出中,"\t"是表示制表符,end==""是表示这句输出由什么结尾,默认是end=="\n"也就是…
Linq to Entity中连接两个数据库时要注意的问题 今天大学同学问了我一个问题,Linq to Entity中连接两个数据库时,报错“指定的 LINQ 表达式包含对与不同上下文关联的查询的引用.” 研究下却是发现这个问题,下面是我做的测试: class Program { static void Main(string[] args) { using(UserDBEntities context=new UserDBEnti…