#1

print "Welcome to Python!"

#2

my_variable = 

#3

# Set the variables to the values listed in the instructions!
my_int =
my_float = 1.23
my_bool = True

#4

# my_int is set to  below. What do you think
# will happen if we reset it to and print the result? my_int = # Change the value of my_int to on line ! my_int = # Here's some code that will print my_int to the console:
# The print keyword will be covered in detail soon! print my_int

#5

def spam():
eggs =
return eggs
print spam()

#6

def spam():
eggs =
return eggs
print spam()

#7

spam = True
eggs = False

#8

#fuck you
mysterious_variable =

#9

"""
"""

#10

# Set count_to equal to the sum of two big numbers
count_to = + print count_to

#11

#Set eggs equal to  using exponentiation on line !

eggs = **

print eggs

#12

#Set spam equal to  using modulo on line !

spam =  % 

print spam

#13

#fuck you
monty = True
python = 1.234
monty_python = python**

#14

# Assign the variable meal the value 44.50 on line !
meal = 44.50

#15

meal = 44.50
tax = 6.75 /

#16

# You're almost there! Assign the tip variable on line 5.

meal = 44.50
tax = 0.0675
tip = 15.0 /

#17

# Reassign meal on line !

meal = 44.50
tax = 0.0675
tip = 0.15 meal = meal + meal*tax

#18

# Assign the variable total on line !

meal = 44.50
tax = 0.0675
tip = 0.15 meal = meal + meal * tax
total = meal + meal * tip print("%.2f" % total)

#19

# Set the variable brian on line !
brian = "Hello life!"

#20

# Assign your variables below, each on its own line!
caesar = "Graham"
praline = "John"
viking = "Teresa" # Put your variables above this line print caesar
print praline
print viking

#21

# The string below is broken. Fix it using the escape backslash!

'This isn\'t flying, this is falling with style!'

#22

"""
The string "PYTHON" has six characters,
numbered to , as shown below: +---+---+---+---+---+---+
| P | Y | T | H | O | N |
+---+---+---+---+---+---+ So if you wanted "Y", you could just type
"PYTHON"[] (always start counting from !)
"""
fifth_letter = "MONTY"[] print fifth_letter

#23

parrot = "Norwegian Blue"
print len(parrot)

#24

parrot = "Norwegian Blue"
print parrot.lower()

#25

parrot = "norwegian blue"
print parrot.upper()

#26

"""Declare and assign your variable on line 4,
then call your method on line !"""
pi=3.14
print str(pi)

#27

ministry = "The Ministry of Silly Walks"

print len(ministry)
print ministry.upper()

#28

"""Tell Python to print "Monty Python"
to the console on line !""" print "Monty Python"

#29

"""Assign the string "Ping!" to
the variable the_machine_goes on
line , then print it out on line !"""
the_machine_goes = "Ping!"
print the_machine_goes

#30

# Print the concatenation of "Spam and eggs" on line !
print "Spam "+"and "+"eggs"

#31

# Turn 3.14 into a string on line !

print "The value of pi is around " + str(3.14)

#32

string_1 = "Camelot"
string_2 = "place" print "Let's not go to %s. 'Tis a silly %s." % (string_1, string_2)

#33

name = raw_input("What is your name?")
quest = raw_input("What is your quest?")
color = raw_input("What is your favorite color?") print "Ah, so your name is %s, your quest is %s, " \
"and your favorite color is %s." % (name, quest, color)

#34

# Write your code below, starting on line !
my_string ="haha"
print len(my_string)
print my_string.upper()

#35

Codecademy python的更多相关文章

  1. codecademy练习记录--Learn Python(70%)

    ############################################################################### codecademy python 5. ...

  2. Python 入门【一】Python 初识及学习资料

    Python 初识及学习路线: CodeCademy Python 在线教学: 廖雪峰 Python 2.7 教程: 廖雪峰 Python 3.0 教程: Python 官方文档(2.7~3.7:英文 ...

  3. 2015/8/9 到家了,学完了CodeCademy的Python

    昨天坐了20多个小时的硬座回家.发现在网络信号差的火车上也是学习的好地方.如果你的手机电量不足的话,带上两本书简直是绝配.我在火车上阅读了两百多页的内容,并没有多大的疲累,那样无聊的环境里面能看书学习 ...

  4. Codecademy For Python学习笔记

    一.Python Lists and Dictionaries: 1. 2.

  5. 给大家推荐一个python的学习网站 http://www.codecademy.com

    注册之后,可以跟着指导,自己编码学习,比较方面: 再推荐一个在线编译的代码网站,c/c++ python  都可以: http://codepad.org

  6. 【转】Python资源 转自 dylanninin.com

    http://dylanninin.com/blog/2013/11/23/python_resource.html Python是在工作期间零零碎碎学习起来的.当时正值部门申购图书,鉴于Python ...

  7. Python学习推荐

    1.    Python官网 官网想必是最权威的,不仅有Python 2.X和3.X的软件包,还有官方文档Python tutorial (official docs)及社区. 2.    在线阅读免 ...

  8. Python抓取单个网页中所有的PDF文档

    Github博文地址,此处更新可能不是很及时. 1.背景 最近发现算法以及数据结构落下了不少(其实还是大学没怎么好好学,囧rz),考虑到最近的项目结构越来越复杂了,用它来练练思路,就打算复习下数据结构 ...

  9. 学习Python编程的11个资源

    用 Python 写代码并不难,事实上,它一直以来都是被声称为最容易学习的编程语言.如果你正打算学习 web 开发,Python 是一个不错的选择,甚至你想学游戏开发也可 以从 Python 开始,因 ...

随机推荐

  1. VM虚拟机和主机互传文件,使用xshell连接Ubuntu

    安装虚拟机后,有时需要在window和Ubuntu互传文件,安装VMwave tooles比较麻烦,干脆直接用xshell连接Ubuntu即可 1,已经安装Ubuntu和xshell 2,在Ubunt ...

  2. mysql -> 简介&体系结构_01

    数据库简介 数据库,简而言之可视为电子化的文件柜——存储电子文件的处所,用户可以对文件中的数据运行新增.截取.更新.删除等操作. 所谓“数据库”系以一定方式储存在一起.能予多个用户共享.具有尽可能小的 ...

  3. 栈应用之 括号匹配问题(Python 版)

    栈应用之 括号匹配问题(Python 版) 检查括号是否闭合 循序扫描被检查正文(一个字符)里的一个个字符 检查中跳过无关字符(所有非括号字符都与当前处理无关) 遇到开括号将其压入栈 遇到闭括号时弹出 ...

  4. 统计学习方法九:EM算法

    一.EM算法是什么? EM算法是一种迭代算法,用于含有隐变量的概率模型参数的极大似然估计. 作用:简单直白的说,估计参数 是一种生成模型 (1)用在概率模型中 (2)含有隐变量 (3)用极大似然估计方 ...

  5. 一步一步学习IdentityServer4 (4) 处理特殊需求之-登录等待页面

    用IdentityServer3的时候登录如果采用Post方式大家会发现有中间有一个等待Submit空白页面,界面不友好,现在我想把这个修改自定义的页面Loading 在Identityserver3 ...

  6. 32 从1到n整数中1出现的次数

    输入一个整数n,求从1到n这n个整数的十进制表示中1出现的次数. 主要思路:设定整数点(如1.10.100等等)作为位置点i(对应n的各位.十位.百位等等),分别对每个数位上有多少包含1的点进行分析 ...

  7. Maven 仓库之阿里云镜像配置

    每当项目开发中 update Maven Project 的时候,我们会发现那个进度是非常的慢,这也严重阻碍了平日的开发进度.        然而,殊不知阿里云搭建了一个国内镜像 http://mav ...

  8. 8VC Venture Cup 2016 - Elimination Round F - Group Projects dp好题

    F - Group Projects 题目大意:给你n个物品, 每个物品有个权值ai, 把它们分成若干组, 总消耗为每组里的最大值减最小值之和. 问你一共有多少种分组方法. 思路:感觉刚看到的时候的想 ...

  9. Django第一步

    对于一个web框架,掌握了三部分的内容,就可以说是迈出了第一步. 1. 准备开发环境 2. 创建一个工程,并运行 3. 开发hello world应用 1. 准备环境 首先应该是安装python和dj ...

  10. poj1979 Red And Black(DFS)

    题目链接 http://poj.org/problem?id=1979 思路 floodfill问题,使用dfs解决 代码 #include <iostream> #include < ...