240 发简信
IP属地:广东
  • 游戏测试工具清单

    经常有人问,入坑游戏测试有什么视频教程吗?弱网测试可以用什么工具?手游有什么自动化测试框架吗? 工欲善其事,必先利其器,相对于APP测试来说,游戏测试的圈子,开源的资源和方案...

  • 2018-07-27 Chapter 5 If

    If cars = ['audi', 'bmw', 'subaru', 'toyota']for car in cars:if car == 'bmw' :print(car...

  • 2018-07-27 Chapter 4 Operate List

    Chapter 4 Operate List 4.2 For loop & Tab names = ['aaa', 'bbb', 'ccc']for name in name...

  • 2018-07-25 Chapter 3 About List

    Chapter 3 List Create bicycles = ['trek', 'cannondale' , 'redline', 'specialized']print...

  • 2018-07-24 Chapter 2.2 Sample Data Type

    2.2简单数据类型将数字作为字符串输出age = 23message = "Happy " + str(age) + "rd Birthday!"print(message)...

  • 2018-07-23 Chapter 2.1 Ablout String

    《Python编程从入门到实践》第二章 字符串print("Hello Python world!") msg1 = "hi"print(msg1) msg2 = 'hi2'...