99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務合肥法律

Make a Website程序代做、代寫Python語言編程

時間:2024-02-22  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



Introduction to Software Development
Homework 4: Make a Website
(Deadline as per Canvas)
This homework deals with the following topics:
● Reading and writing files
● Scraping and parsing information from a text file
● Very basic HTML
● Unit testing
General Problem Specification
The basic skeleton of a website is an HTML page. This HTML page is a text file with a certain
format. Taking advantage of this fact, one can take an HTML template and create multiple
pages with different values stored. This is exactly what we are going to do in this homework.
Many websites use these kinds of scripts to mass generate HTML pages from databases. We
will use a sample text file as our ‘database’.
Our goal will be to take a resume in a simplistic text file and convert it into an HTML file that
can be displayed by a web browser.
What is HTML?
You do not need to know much HTML to do this assignment. You can do the assignment by
just understanding that HTML is the language that your browser interprets to display the page.
It is a tag-based language where each set of tags provides some basic information for how the
browser renders the text that the tags enclose.
For example, <h1>The Beatles</h1> will be rendered by your browser with “The Beatles”
as a heading with a large font. <h1> indicates the beginning of the heading and </h1>
indicates the ending of the heading. An HTML webpage is typically divided into a head section
and a body section. We have provided you with a basic website template. We want you to
retain the head section and write only the body section via your Python program.
For more details about HTML, your best resource will be to use the w3schools website which
can be found here: www.w3schools.com. This website has a ton of information and provides
all of the common HTML you’ll need to know for this assignment.
1
Introduction to Software Development
Input Test File
We will read a simple text file that is supposed to represent a student’s resume. The resume
has some key points but can be somewhat unstructured. In particular, the order of some of the
information will definitely be different for different people.
The following are the things that you definitely DO know about the resume:
● Every resume will have a name, which will be written at the top. The top line in the text
file will contain just the name.
● There will be a line in the file, which contains an email address. It will be a single line
with just the email address and nothing else.
● Every resume will have a list of projects. Projects are listed line-by-line below a heading
called “Projects”. An example of what you might see in a resume file is something like
this:
Projects
Worked on big data to turn it into bigger data
Applied deep learning to learn how to boil water
Styled web pages with blink tags.
Washed cars …
----------
● The list of projects ends with a single line that looks like ‘----------’. That is, it will have
at least 10 minus signs. While this is an odd formatting requirement, this will actually
make the assignment easier for you.
● Every resume will have a list of Courses. Courses are listed like:
Courses - CIT5**, AB120
OR
Courses :- Pottery, Making money by lying
● The formatting for Courses will be the word “Courses” followed by some amount of
punctuation, followed by the comma-separated list of courses.
● Your program should be able to look at the above example and then extract the
courses without including the ‘-’ sign or the ‘:-’. Note that any type of punctuation
could be between “Courses” and the list of courses.
2
Introduction to Software Development
Functions for Parsing the File
At the very least, you need to write one function for each piece of information that you want to
extract from the text file. Contrary to previous homework assignments, in this assignment we
will not provide you with a strict outline for the functions or what arguments to pass to them.
When we grade, we’ll look at how modular your code is and how you decided to break up the
functionality into separate functions. We’ll also look at how you named the functions, what
arguments they take, and how well you unit test the functions.
Here’s a basic breakdown of the functionality required to read the file into memory, parse each
section of the file to extract the relevant information, and write the final HTML-formatted
information to a new file. You should be writing to a file, not appending.
Reading the File
● Since the resume file is pretty small, write a function that reads the file and stores it in
memory as a list of lines.
● Then, you can use list and string manipulations to do all of the other necessary work.
● You should not prompt the user for a filename (or any other information). You can rely
on the provided code which includes hardcoded resume filenames to read.
Detecting the Name
● Detect and return the name by extracting the first line.
● The one extra thing we want you to do, just for practice, is if the first character in the
name string is not an uppercase letter (capital ’A’ through ’Z’), consider the name invalid
and ignore it. In this case, use ‘Invalid Name’ as the user’s name.
● For example:
Brandon Krakowsky is a valid name
brandon Krakowsky is not a valid name, so your output html file will display ‘Invalid
Name’ instead
● Another thing to note is that the name on the first line could have leading or trailing
whitespace, which you will need to remove.
● Note: Do not use the istitle() function in Python. This returns True if ALL words in a text
start with an upper case letter, AND the rest of the characters in each word are lower
case letters, otherwise False. This function will incorrectly identify a name like Edward
jones as being an invalid name, when it’s actually valid.
3
Introduction to Software Development
Detecting the Email
● Detect and return the email address by looking for a line that has the ‘@’
character.
● For an email to be valid:
○ The last four characters of the email need to be either ‘.com’ or ’.edu’.
○ The email contains a lowercase English character after the ‘@’.
○ There should be no digits or numbers in the email address.
● These rules will accommodate lbrandon@wharton.upenn.edu but will not
accommodate lbrandon@python.org or lbrandon2@wharton.upenn.edu
● For example:
lbrandon@wharton.upenn.edu is a valid email
lbrandon@wharton2.upenn.com is not a valid email
lbrandon2@wharton.upenn.com is also not a valid email
● The email string could have leading or trailing whitespace, which will need to be
stripped.
● We are fully aware that these rules are inadequate. However, we want you to
use these rules and only these rules.
● If an email string is invalid based on the given rules, consider the email address to be
missing. This means your function should return an empty string and your output
resume file will not display an email address.
● DO NOT GOOGLE FOR A FUNCTION FOR THIS. Googling for solutions to your
homework is an act of academic dishonesty and in this particular case, you will get
solutions involving crazy regular expressions, which is a topic we haven’t yet discussed
in class. (In general, your code should never involve a topic that we have not discussed
in class.). Plus, you can easily achieve the required functionality without the use of a
regular expression.
Detecting the Courses
● Detect and return the courses as a list by looking for the word “Courses” in the list
and then extract the line that contains that word.
● Then make sure you extract the correct courses. In particular, any random
punctuation after the word “Courses” and before the first actual course needs to be
ignored.
● You are allowed to assume that every course begins with a letter of the English
alphabet.
● Note that the word “Courses”, the random punctuation, or individual courses in the
list could have leading or trailing whitespace that needs removed.
4
Introduction to Software Development
Detecting the Projects
● Detect and return the projects as a list by looking for the word “Projects” in the list.
● Each subsequent line is a project, until you hit a line that contains ‘----------’. This is
NOT an underscore. It is (at least) ten minus signs put together. You have reached the
end of the projects section if and only if you see a line that has at least 10 minus
signs, one after the other.
● If you detect a blank line between project descriptions, ignore that line.
● Each project could have leading or trailing whitespace that needs removed.
Writing the HTML
Once you have gathered all the pieces of information from the text file, we want you to
programmatically write HTML. Here are the steps for that:
● Start by saving the file resume_template.html that is provided in the same directory as
your code.
● Preview the file in a text editor that does HTML syntax highlighting (e.g. Sublime
Text). Note that opening this page in your browser will give you a blank web page
since the file only contains a header and an empty body.
● You are going to programmatically copy the HTML in resume_template.html, fill in the
empty <body> with the resume content, then write the final HTML to a new file
resume.html. You should be writing to a file, not appending to a file. (Note: you should
not modify or overwrite the resume_template.html file. You should copy the
information from this file, modify it as needed, and then write the modified information
to a new file, resume.html. Think about how you can save the information from
resume_template.html in program memory to help you accomplish this.)
● More specifically, your Python code will do the following:
o Open and read resume_template.html
o Read every line of HTML into program memory
o Remove the last 2 lines of HTML (the </body> and </html> lines). (You can delete
these lines, and you will programmatically add them back later)
o Add all HTML-formatted resume content (as described below).
o Add the last 2 lines of HTML back in (the </body> and </html> lines).
o Write the final HTML to a new file resume.html
Why are we doing this? Because the HTML in resume_template.html looks something
like the below, and we need to start by removing the last two lines of HTML (closing
</body> and </html> tags) in order to insert the resume content in the correct
location.
random header stuff
<html>
<head> lots of style rules we won’t worry about
5
Introduction to Software Development
</head>
<body>
</body>
</html>
We want to put our resume content in between the body tags to make it look like this:
random header stuff
<html>
<head> lots of style rules we won’t worry about
</head> <body>
HTML-formatted resume content goes here
</body>
</html>
In order to write proper HTML you will need to write the following helper function:
def surround_block(tag, text):
● This function surrounds the given text with the given HTML tag and returns the
string
● For example, surround_block(‘h1’, ‘The Beatles’) would return
‘<h1>The Beatles</h1>’
You’re going to display the email address in your webpage as an active email link. The proper
way to create a link in HTML is to use the <a> and </a> tags. The <a> tells where the link
should start and the </a> indicates where the link should end. Everything between these two
tags will be displayed as a link and the target of the link is added to the <a> tag using the href
attribute.
For example, a link to google.com would look like this:
<a href = ”https://www.google.com/”>Click here to go to Google</a>
The <a> tag also provides the option to specify an email address as the target of the link. To
do this, you use the “mailto: email address” format for the href attribute.
For example, an email link to abc@example.com would look like this:
<a href = "mailto: abc@example.com">Send Email</a>
In order to write proper HTML for the email link, you will need to write the following helper
function:
6
Introduction to Software Development
def create_email_link(email_address):
● This function creates an email link with the given email_address
● To cut down on spammers harvesting the email address from your webpage, this
function should display the email address with an [aT] instead of an @
● For example, create_email_link(‘tom@seas.upenn.edu’) would return
<a href="mailto:tom@seas.upenn.edu">tom[aT]seas.upenn.edu</a>
● Note: If (for some reason) the given email address does not contain @, use the email
address as is and don't replace the @*
● For example, create_email_link(‘tom.at.seas.upenn.edu’) would return
‘<a href="mailto:tom.at.seas.upenn.edu">tom.at.seas.upenn.edu</a>’
*Note: the create_email_link function does not determine if the email address is valid as
described in the “Detecting the Email” section above. Detecting a valid email address should
be separate from creating the email link. Even though every resume should contain an email
address with an @ symbol, we are asking that you create the function this way to practice
what to do for unexpected inputs.
Now break the writing of the resume into the following steps:
1. In order to format the resume content, we have to make sure that all the text is
enclosed within the following tags:
<div id="page-wrap">
</div>
Since we typically write things line-by-line, this initial step will write the 1
st
line <div
id="page-wrap">. We’ll then fill in the actual resume content in multiple steps,
then step 5 below will close out the all open tags. So, this initial step just writes the
1
st
line above.
2. The basic information section contains the name and email address enclosed in the
proper tags. An example is below:
<div>
<h1>Brandon Krakowsky</h1>
<p>Email: <a
href=”mailto:lbrandon@wharton.upenn.edu”>
lbrandon[aT]wharton.upenn.edu</a></p>
</div>
7
Introduction to Software Development
Think about how you can do that. In particular, think about how the create_email_link
and surround_block functions can be used to achieve this. Write another function to
make this entire intro section of the resume and then write it out to a file. Note
that the email address should be preceded by “Email:” in your final output.
3. For the projects section. you will have to produce output like the following. Assume
that you have the data about the projects by reading through the original file and stored
that in some data structure (decide whether you want to use list, set, tuple or
dictionary)
<div>
<h2>Projects</h2>
<ul>
<li>built a robot</li>
<li>fixed an ios app</li>
</ul>
</div>
Note that you MUST have <li> tags surrounded by <ul> tags in your output. If you do
not exactly match this format, you will have issues with the project bullet points not
displaying correctly. <li> is short for list, and <ul> is short for unordered list.
4. For the courses section, we actually just want to list the courses. We do not want to
create bullet points. We also want the heading to be a bit smaller in size and enclosed
in <h3></h3> tags. So here is an example of generated HTML:
<div>
<h3>Courses</h3>
<span>Algorithms, Race car training</span>
</div>
Write a function that takes in courses (you can decide whether you want a list of
courses or a string of courses) and then write out the HTML, in the form above, to the
file.
5. After writing all of this content we just need to remember to close the HTML tags. To
do this, we need to write the following 3 lines to the file:
</div>
</body>
</html>
Note that you MUST add the </div> tag as well as the </body> and </html> tags
or your HTML will not display correctly.
6. And most importantly, you need to close the file -- otherwise it will NOT save!
8
Introduction to Software Development
Starter Code
We’re providing you with a starter file make_website.py, which contains some functions to get
you started:
def generate_html(txt_input_file, html_output_file):
● You need to implement this function in order to do the following:
○ Call other function(s) in your program (that you define) to load the given
txt_input_file
○ Call other function(s) in your program (that you define) to get the name, email
address, list of projects, and list of courses
○ Call other function(s) in your program (that you define) to write all of the info to
the given html_output_file
def main():
● This function is the starting point for your program. It is implemented for you and does
the following:
○ Calls the generate_html function to generate a resume.html file from the
provided sample resume.txt file. DO NOT REMOVE OR UPDATE THIS CODE!
○ Calls the generate_html function multiple times to generate additional
resume.html files for other test resume.txt files. AGAIN, DO NOT REMOVE OR
UPDATE THIS CODE.
You MUST uncomment each call to the generate_html function when you’re
ready to test how your program handles each additional test resume.txt file.
#generate_html('TestResumes/resume_bad_name_lowercas
e/ resume.txt',
'TestResumes/resume_bad_name_lowercase/resume.html')
#generate_html('TestResumes/resume_courses_w_whitespace/r
es ume.txt',
'TestResumes/resume_courses_w_whitespace/resume.html')
#generate_html('TestResumes/resume_courses_weird_punc/res
um e.txt',
'TestResumes/resume_courses_weird_punc/resume.html')
#generate_html('TestResumes/resume_projects_w_whitespace/
re sume.txt',
'TestResumes/resume_projects_w_whitespace/resume.html
')
#generate_html('TestResumes/resume_projects_with_blanks/r
es ume.txt',
9
Introduction to Software Development
'TestResumes/resume_projects_with_blanks/resume.html
')
#generate_html('TestResumes/resume_template_email_w_white
sp ace/resume.txt',
'TestResumes/resume_template_email_w_whitespace/resume.ht
ml ')
#generate_html('TestResumes/resume_wrong_email/resume.txt'
, 'TestResumes/resume_wrong_email/resume.html')
Unit Testing
We’re providing you with a starter unit testing file make_website_test.py. Currently, it contains
only two test functions, test_surround_block and test_create_email_link. Make sure you pass
all of the tests in the unit testing file, plus, be sure to write other test functions to test the
functions in your program. You do not need to have tests for functions that write to a file, but
you should otherwise have unit tests for every function that you create. You should be testing
both typical examples and edge cases.
Although we are providing example resumes, you may find it helpful to create your own
sample resumes to test on as well. If you do, include them in your final submission.
Resume Files
Using the sample resume.txt file that we provided, the generated resume.html file should
display like this:
We’re also providing 7 other different test resume.txt files that your program should be able to
handle. Each one is in its own subdirectory inside the “TestResumes” directory. Your program
will load the test resume.txt file in each subdirectory and generate a resume.html file. (Some
of the code for doing this is provided in the starter file make_website.py.) To help with your
10
Introduction to Software Development
testing, each subdirectory also contains an image (.PNG) of what the generated resume.html
file is supposed to look like.
What to Submit
You will submit the following files:
1. make_website.py: the program you wrote
2. make_website_test.py [and any other .txt files you created for testing]: the unit tests
you wrote for all your functions and if you created other .txt files (e.g. different versions
of your own resume) to be read by your main program or your unit tests, please include
those with your submission. Part of grading your assignment will be to run your unit
tests. We want to make sure they pass if they reference other .txt files.
3. resume.txt: the sample text resume file provided to be read by your program
4. resume.html: the html resume file that was generated when you ran your program
5. The entire “TestResumes” folder: with subdirectories containing additional text
resume.txt files and the generated resume.html file for each. You MUST generate the
resume.html in each subdirectory before you submit your entire program.
Evaluation
It is important that you understand that in this assignment there is more to it than just getting
your code to work. Please post on the class forums or come to office hours if you have
questions.
1. Functionality – 15 points
a. Does your program successfully convert a resume text file into a resume HTML
file?
b. Can that HTML file be rendered in a web browser? Test it out in at least 2
different browsers to confirm this.
11
Introduction to Software Development
c. Is your program able handle the additional test resume text files and
successfully convert them to resume HTML files? Do the resume HTML files
look like the images provided in each testing subdirectory?
2. Unit Testing – 10 points
a. Did you write a test for each function you wrote? An exception to this rule would
be a function that writes to a file aa this is difficult to test with unit testing.
b. Are you doing a good job of testing all the different cases for each function? You
should be testing both typical examples and edge cases.
3. Design and Style – 15 points
a. Since we do not give you specific functions, we will be evaluating your design.
b. Did you follow style conventions as defined in this course? Do all functions have
docstrings and do all non-trivial lines of code have comments?
c. Did you use the best data structures and variable types for each situation?
d. Did you simplify the logic of your functions? In other words, if it is possible to do
the same thing with fewer lines of code, did you do so?
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機打開當前頁
  • 上一篇:代做EEE3457編程、代寫Java/Python程序語言
  • 下一篇:代寫COMP3331 Computer Networks and Applications -
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優(yōu)化
    急尋熱仿真分析?代做熱仿真服務+熱設計優(yōu)化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發(fā)動機性能
    挖掘機濾芯提升發(fā)動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機亮相AWE 復古美學與現(xiàn)代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關于我們 | 打賞支持 | 廣告服務 | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                欧美精品久久久久久久多人混战| 视频在线观看一区二区三区| 欧美在线免费播放| 中日韩免费视频中文字幕| 亚洲成a人v欧美综合天堂| 亚洲女性喷水在线观看一区| 中文字幕一区二区日韩精品绯色| 久久这里只精品最新地址| 国产91精品一区二区麻豆网站| 日韩电影在线看| 日韩欧美国产一区二区在线播放 | 日韩欧美国产不卡| 日韩欧美中文一区| 蜜桃免费网站一区二区三区| 亚洲福利一二三区| 午夜激情综合网| 免费成人小视频| 国产一区二区三区电影在线观看| 国产传媒日韩欧美成人| 波多野结衣欧美| 色婷婷亚洲婷婷| 欧美浪妇xxxx高跟鞋交| 精品国产乱码久久久久久图片| 精品久久久久久久久久久久包黑料 | 五月婷婷另类国产| 久久成人18免费观看| 韩国三级中文字幕hd久久精品| 国产99精品国产| 色网综合在线观看| 日韩一级视频免费观看在线| 久久午夜电影网| 亚洲欧美日韩国产手机在线| 亚洲成av人综合在线观看| 日韩国产精品91| 成人夜色视频网站在线观看| 色综合天天综合在线视频| 91精品国产免费久久综合| 日本一区二区视频在线| 亚洲影院在线观看| 国产传媒欧美日韩成人| 在线观看日韩精品| 国产偷国产偷精品高清尤物| 亚洲综合精品久久| 国产高清一区日本| 欧美肥妇bbw| 亚洲日本电影在线| 美女高潮久久久| 色欧美日韩亚洲| 国产日韩av一区二区| 亚州成人在线电影| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 国产成人午夜视频| 欧美午夜理伦三级在线观看| 亚洲国产色一区| 春色校园综合激情亚洲| 日韩精品免费专区| 国产又黄又大久久| 欧美色综合久久| 国产日韩精品视频一区| 亚洲二区在线观看| 不卡av电影在线播放| 精品少妇一区二区三区免费观看| 亚洲激情五月婷婷| 成人午夜大片免费观看| 亚洲精品一区二区三区在线观看| 亚洲韩国一区二区三区| 99在线视频精品| 国产午夜精品久久久久久免费视| 麻豆久久久久久| 欧美日本在线一区| 亚洲欧美激情在线| 国产盗摄一区二区三区| 6080yy午夜一二三区久久| 视频一区视频二区中文字幕| 日本精品视频一区二区三区| 亚洲视频免费在线观看| 在线欧美日韩国产| 国产高清无密码一区二区三区| 国产精品色噜噜| 欧美久久久久免费| 国产精品2024| 亚洲国产一区二区三区| 欧美一级欧美一级在线播放| 国产乱人伦偷精品视频不卡| 夜夜嗨av一区二区三区| 久久综合色婷婷| 欧美一级日韩免费不卡| 日韩国产精品91| 欧美久久高跟鞋激| 香蕉久久一区二区不卡无毒影院| 亚洲影院在线观看| 日韩一区二区三区免费看| 成人精品小蝌蚪| 欧洲精品视频在线观看| 亚洲免费电影在线| 精品国产91九色蝌蚪| 视频一区二区中文字幕| 色狠狠桃花综合| 亚洲在线观看免费| 欧美精品久久天天躁| 青青草成人在线观看| 日韩欧美区一区二| 国产一区欧美二区| 国产日本一区二区| 91蝌蚪porny| 日韩中文字幕av电影| 日韩欧美综合一区| 激情文学综合网| 中国色在线观看另类| 99re这里只有精品首页| 亚洲一区二区三区自拍| 欧美一区二区三区在线视频| 老司机一区二区| 中文字幕日韩av资源站| 欧美伊人精品成人久久综合97| 亚洲国产综合人成综合网站| 欧美一卡2卡3卡4卡| 国产综合久久久久久鬼色 | 91黄视频在线| 日韩电影在线一区二区| 国产日韩欧美高清| 色素色在线综合| 久久99久久久欧美国产| 中文字幕一区二区三区在线不卡 | 国产精品日日摸夜夜摸av| 91黄色激情网站| 韩国三级在线一区| 亚洲在线一区二区三区| 久久久美女毛片| 精品视频在线免费看| 国产91精品一区二区麻豆网站| 亚洲国产视频a| 国产精品理伦片| 日韩免费一区二区| 欧美视频一区二区三区四区| 国产成人精品www牛牛影视| 亚洲妇熟xx妇色黄| 亚洲久草在线视频| 亚洲国产高清aⅴ视频| 日韩欧美高清在线| 欧美日韩精品久久久| 91啪亚洲精品| 国产原创一区二区三区| 日韩vs国产vs欧美| 一区二区三区久久久| 中文字幕免费不卡| 国产亚洲一本大道中文在线| 欧美一级欧美一级在线播放| 色欧美乱欧美15图片| 国产精品99久久久久久似苏梦涵| 蜜桃av噜噜一区二区三区小说| 亚洲午夜久久久| 亚洲日本va午夜在线影院| 日本一区二区三区高清不卡| 91精品国产色综合久久不卡电影 | 国产精品伦一区二区三级视频| 欧美一二区视频| 日韩一区二区三免费高清| 欧美视频在线一区二区三区| 99久久夜色精品国产网站| 成人视屏免费看| 波多野结衣在线一区| 成人黄色一级视频| 成人免费黄色大片| 成人国产免费视频| 懂色av一区二区三区免费观看| 国产一区二区三区免费播放| 久久国产尿小便嘘嘘尿| 另类小说图片综合网| 久久精品国产一区二区| 日本不卡123| 久久99热这里只有精品| 国产一区二区女| 国产乱人伦偷精品视频不卡 | 极品少妇xxxx偷拍精品少妇| 另类小说视频一区二区| 久久超碰97人人做人人爱| 激情小说欧美图片| 国产91清纯白嫩初高中在线观看| 北岛玲一区二区三区四区| 在线观看一区日韩| 欧美一区二区三区四区久久| 精品国产亚洲一区二区三区在线观看| 精品精品国产高清一毛片一天堂| 久久亚洲一区二区三区明星换脸 | 日韩一区在线播放| 亚洲六月丁香色婷婷综合久久 | 国产婷婷色一区二区三区四区 | 成人av免费观看| 在线视频一区二区三| 91精品国产入口在线| 91精品国产综合久久久久| 337p粉嫩大胆色噜噜噜噜亚洲| 国产精品无码永久免费888| 又紧又大又爽精品一区二区| 视频一区二区三区在线| 国产成人自拍网| 欧美视频你懂的| 国产午夜亚洲精品不卡| 一区二区久久久久|