上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 35 下一页

2017年11月24日

摘要: #if else示例x = 5y = 8 if x > y: print("x is greater than y")else: print("x is not greater than y") print(" ")#if-elif-elsex = 15y = 18z = 15 if x > y: 阅读全文
posted @ 2017-11-24 14:13 sunny_2016 阅读(145) 评论(0) 推荐(0)
摘要: print ("Hello Pythoh3")print('我喜欢"香蕉"')print('we\'ar go to shoping.')print("我们发现这个\"地方\"不一样")print("Hi" + "Tom")##print("Hi" + 5)print("Hi" + str(5))p 阅读全文
posted @ 2017-11-24 13:27 sunny_2016 阅读(295) 评论(0) 推荐(0)

2017年11月21日

摘要: public class TestString { public static void main(String[] args) { // TODO Auto-generated method stub String s1 = "Hello world"; if(!s1.isEmpty()){ Sy 阅读全文
posted @ 2017-11-21 13:42 sunny_2016 阅读(115) 评论(0) 推荐(0)
摘要: public class TestString2 { public static void main(String[] args) { //判断两字符串是否相等 String s1 = "Hello world"; String s2 = "Hello java"; if (s1.equals(s2 阅读全文
posted @ 2017-11-21 13:41 sunny_2016 阅读(92) 评论(0) 推荐(0)
摘要: package com.promote; public class ForDemo { public static void main(String[] args) { // 1到100相加求和 int sum=0; for (int i = 0; i <=100; i++) { sum+=i; } 阅读全文
posted @ 2017-11-21 13:40 sunny_2016 阅读(111) 评论(0) 推荐(0)

2017年11月20日

该文被密码保护。 阅读全文
posted @ 2017-11-20 13:07 sunny_2016 阅读(1) 评论(0) 推荐(0)

2017年11月7日

摘要: C:\Users\ceshi> netstat -aon|findstr "5037" TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 6600 TCP 127.0.0.1:5037 127.0.0.1:52542 ESTABLISHED 6600 TCP 127.0. 阅读全文
posted @ 2017-11-07 16:17 sunny_2016 阅读(217) 评论(0) 推荐(0)

2017年11月3日

摘要: appium --session-override 阅读全文
posted @ 2017-11-03 14:16 sunny_2016 阅读(507) 评论(0) 推荐(0)
摘要: #coding=utf-8#比较两个对象是否相等#python 2中使用cmp(),==,is#is 主要是判断 2 个变量是否引用的是同一个对象,如果是的话,则返回 true,否则返回 false。#== 用来判断两个对象的值是否相等(跟 Java 不同,Java 中 == 用来判断是否是同一个对 阅读全文
posted @ 2017-11-03 13:35 sunny_2016 阅读(16854) 评论(0) 推荐(0)
摘要: https://testerhome.com/topics/4651 阅读全文
posted @ 2017-11-03 13:12 sunny_2016 阅读(209) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 35 下一页

导航