For more information about the variables in Python and Their Naming and printing

Source: Internet
Author: User
Tags variable scope

For more information about the variables in Python and Their Naming and printing

In a program, a variable is a name, which makes it easier to remember.

cars = 100 space_in_a_car = 4.0 drivers = 30 passengers = 90 cars_not_driven = cars - drivers cars_driven = drivers carpool_capacity = cars_driven * space_in_a_car average_passengers_per_car = passengers / cars_driven 


print "There are", cars, "cars available." print "There are only", drivers, "drivers available." print "There will be", cars_not_driven, "empty cars today." print "We can transport", carpool_capacity, "people today." print "We have", passengers, "to carpool today." print "We need to put about", average_passengers_per_car, "in each car." 


Tip: underlines are generally used in variable names to indicate hypothetical spaces. Make variable names more readable.

Running result:

root@he-desktop:~/mystuff# python ex4.py 
There are 100 cars available.There are only 30 drivers available.There will be 70 empty cars today.We can transport 120.0 people today.We have 90 to carpool today.We need to put about 3 in each car.root@he-desktop:~/mystuff# 


More variables and Printing
Now we enter more variables and print them. We usually use "" to refer to strings.

Strings are quite convenient. In practice, we will learn how to create strings containing variables. There is a special way to insert a variable into a string, which is equivalent to telling Python: "Hey, this is a formatted string. Put the variable here ."

Enter the following program:

# -- Coding: UTF-8 -- my_name = 'zed. shaw 'my_age = 35 # No lie Oh my_height = 74 # inch my_weight = 180 # Pound my_eyes = 'Blue 'my_teeth = 'white' my_hair = 'brown'


print "let's talk about %s." % my_name print "He's %d inches tall." % my_height print "He's %d pounds heavy." % my_weight print "Actually that's not too heavy." print "He's got %s eyes and %s hair." % (my_eyes, my_hair) print "His teeth are usually %s depending on the coffee." % my_teeth 


# The following line is complex. Try to write it. Print "If I add % d, % d, and % d I get % d." % (my_age, my_height, my_weight, my_age + my_height + my_weight)


Tip: If the encoding is incorrect, enter the first sentence.

Running result:

root@he-desktop:~/mystuff# python ex5.py
let's talk about Zed A. Shaw.He's 74 inches tall.He's 180 pounds heavy.Actually that's not too heavy.He's got Blue eyes and Brown hair.His teeth are usually White depending on the coffee.If I add 35, 74, and 180 I get 289.root@he-desktop:~/mystuff# 
Articles you may be interested in:
  • Understand java and python class variables and class member variables
  • Python nested functions use external function variables (Python2 and Python3)
  • Python Function Local variable usage Example Analysis
  • Call methods and process invalid variables in the Python Django framework
  • Python variable scope instance analysis
  • Parse Data Types of variables in Python in detail
  • In-depth exploration of the copy and scope of variables in Python
  • Parsing variables, references, copies, and scopes in Python
  • Analysis of instance methods, static methods, class methods, class variables, and instance variables in python
  • Python class variable and member variable usage example tutorial

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.