From 5d7f2d18912cae58f71ca731a8174529d34878e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E6=AC=A2?= <9927068+li-huan001@user.noreply.gitee.com> Date: Tue, 26 Oct 2021 14:29:45 +0000 Subject: [PATCH] =?UTF-8?q?update=20exercise/3=20=E5=8F=98=E9=87=8F/README?= =?UTF-8?q?.md.=20git=20commit=20-m=20"=E6=8F=90=E4=BA=A4=E5=8F=98?= =?UTF-8?q?=E9=87=8F=E4=BD=9C=E4=B8=9A"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "exercise/3 \345\217\230\351\207\217/README.md" | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git "a/exercise/3 \345\217\230\351\207\217/README.md" "b/exercise/3 \345\217\230\351\207\217/README.md" index 0bc8931..22766c3 100644 --- "a/exercise/3 \345\217\230\351\207\217/README.md" +++ "b/exercise/3 \345\217\230\351\207\217/README.md" @@ -1,6 +1,13 @@ # 练习一 变量的定义和使用 -1. 定义两个变量分别为美元和汇率 -2. 通过搜索引擎找到美元兑人民币汇率 -3. 使用Python计算100美元兑换的人民币数量并用print( )进行输出 +#1. 定义两个变量分别为美元和汇率 +#2. 通过搜索引擎找到美元兑人民币汇率 +#3. 使用Python计算100美元兑换的人民币数量并用print( )进行输出 + + +dollar = 100 + +rate= 6.3792 + +print(dollar* rate) -- Gitee