使用变量将用户输入输出到文件

时间:2019-01-13 00:05:53

标签: python file input

我试图以用户输入为例,例如widgetName的用户输入,并将其添加到html的<title>标记之间的文件中。

我尝试查找方法,但是没有运气。

widgetName = input("Please enter the name you would like to use for your widget: ")

with open(os.path.join(widgetname, 'LockBackground.html'), 'w') as f:
    f.write("""
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> USER INPUT GOES HERE!! </title>
<style type="text/css">
@font-face {
    font-family: HelveticaNeue-UltraLigCond;
    src: url('fonts/font-file-goes-here');
}

# More CSS goes here.
</style>
<script type="text/javascript" src="scripts/jquery-1.6.4.min.js"></script>
# More javascript here.
</head>
<body>

# Code goes here.

</body>
</html> """)

1 个答案:

答案 0 :(得分:2)

您可以执行2种方法。一种是使用std::thread::detach字符串替换,另一种是使用|

%s

另一种方式

{}