crackers

笨方法学python练习与总结

妖精的绣舞 提交于 2020-12-12 13:31:03
  这是一篇根据书本《笨方法学python3》而来的博客,希望自己能在每天抽一点时间来学习python,使自己能够前后端都能得到进步。脚踏实地,一步一步!   在开始之前,希望自己的英语能够在不断地积累与代码练习中的得到提高,以及告诫自己,无论什么事,取是能力,舍是境界。 第一个程序 练习代码: print("Hello World!") #print("Hello Again") #print("I like typing this.") #print("This is fun.") #print("Yay! Printing.") #print("i`d much rather you 'not' .") #print('I "said" do not touch this.')    练习目的:使用python的打印方法,关于print这个方法其实有很深远的说法,待补充。 问题:由于作者希望读者能够摆脱ide的依赖,使用最原始的文本编辑器去进行python练习,所以在一开始无法运行自己编写的python程序。 解决:我们需要在我们自己写的python文件目录下执行 python3.x xxx.py才能将我们的程序运行起来。比如 lpthw/ex1.py 在编者的mac系统下就需要cd lpthw才可执行命令,运行python文件。 注释与#号 练习代码: # A

python3 _笨方法学Python_日记_DAY4

╄→尐↘猪︶ㄣ 提交于 2020-04-29 16:38:48
Day4 习题 19: 函数和变量 1 def cheese_and_crackers(cheese_count, boxes_of_crackers): 2 print ( " You have %d cheeses! " % cheese_count) 3 print ( " You have %d boxes of crackers! " % boxes_of_crackers) 4 print ( " Man that's enough for a party! " ) 5 print ( " Get a blanket.\n " ) 6 7 print ( " We can just give the function numbers directly: " ) 8 cheese_and_crackers(20,30 ) 9 10 print ( " OR,we can use variables from our script: " ) 11 amount_of_cheese = 10 12 amount_of_crackers = 50 13 14 cheese_and_crackers(amount_of_cheese, amount_of_crackers) 15 16 print ( " We can even do math inside too: " )