1. 程式人生 > >Python3.5開發2 - 整合開發環境搭建

Python3.5開發2 - 整合開發環境搭建

Python3.5開發2 - 整合開發環境搭建

Python3可以使用中文作為變數

字元拼接 +

知識點:

  • 安裝與配置Pycharm

  • 除錯Python程式

  • 變數

演示:


a = "hello %s" % 'yx'

b = '你好{},今天{},星期二{}'.format('yx',123,'ddd')

ab = a + b

print(ab)


c = 'hello "yx"'

d = "hello 'yx'"

e = 'hello \''

print(e)

import
random a = random.randint(100,10000) print(a)

作業:格式化秒數的小工具

使用format和+

import random



num = random.randint(100,10000)

hour = int(num/3600)

minute = num%3600//60

second = num%3600%60



result1 = "使用format列印:{}秒 = {}時{}分{}秒".format(num,hour,minute,second)

result2 = "使用字串拼接列印:" + str(num) + "秒 = " + str(
hour) + "時" + str(minute) + "分" + str(second) + "秒" print(result1) print(result2)