Parent-child diary was a form of diary for parents to record the parent-child relationship, the child's growth process, and their own thoughts on raising children. In the parent-child diary, parents might record many aspects of the child's growth, such as the child's physical development, such as the child's appearance at birth, the parents 'worries when they were sick, etc.; the child's psychological development, including cognition of things, emotional changes, etc.; and the child's behavior habits, such as learning habits, eating habits, etc. According to the information provided, some parents recorded their children's reactions when they cried at night and the process of developing a "father's feeling" later on; some recorded their children's curious questions about things, such as doubts about the concept of death; some parents recorded their interactions with their children in terms of diet, such as their children wanting to eat lollipops and their parents 'control over their children's eating of candy; It also included the child's habit of watching TV and learning, such as the encouragement after realizing that watching TV affected learning and the unsatisfactory test results. It also included the child's performance in life, such as steaming cartoon buns to show his hands-on ability and taking the initiative to do homework. These parent-child journals reflected the rich content of parents 'observations, thoughts, confusion, and warm moments with their children during the process of raising children.
Chu Caiwei was originally a seventh-grade Feng Shui Master. Due to Xu Qi 'an's help, she was promoted to a sixth-grade gold cultivator.
The Nine-Tailed Heavenly Fox had released the remains of Shenshu in the Sang Bo Case and hidden them in Xu Qi 'an's body.
There was a story about a husband who played a ridiculous "game" in order to avoid becoming a father. The husband's name was Xiao Zhang. He usually doted on his wife, but when he found out that his wife did not want to take on the responsibility of being a father after she was pregnant, he came up with an idea. He took advantage of the fact that his wife did not dislike him playing games and pretended to play games. In fact, he was contacting his friends through the chat software, hoping that his friends would deal with his wife on his behalf. It was similar to the idea of a prank. During the implementation process, although his wife did not discover it for the first few days, it was eventually exposed. However, what was surprising was that his wife did not get angry when she found out the truth. Instead, she laughed. In the end, they decided to face the future together. Her husband's game behavior was ridiculous, but it also reflected the importance of honesty and trust in a marriage relationship. The novel " Yan Xiaoqi's Journey to the Other World " is equally exciting. Everyone is welcome to click and read it!
The conditions for joining Sibao Beef Offal Noodles were as follows: first, a suitable store must be prepared in advance for operation; at the same time, the investment funds needed to invest in Sibao Beef Offal Noodles must be prepared. "Warrior Sage!" The novel is equally exciting. Everyone is welcome to click and read it!
If you want me to recommend the highlights of the two teams 'matches, the star players of the two teams, and so on, you have to give me more information, such as which competition this is, the recent state of the two teams, and so on. While watching the Olympics, you can also read the wonderful novels related to the Olympics!
You only gave it the name " social fringe network " and didn't say anything more about it. For example, is it a website? Or the name of some work? Please give me more information so that I can make recommendations according to your requirements. The novel "Ledge" is equally exciting. Everyone is welcome to click and read it!
The female protagonist of the novel," Godly Tycoon: Who Knows My Family? I Have Too Much Money to Spend ", Yun Can, was bound to a system called the Money Ability and lived a life of unlimited spending. The female protagonist was strong and had a beautiful male plot. However, the people she spent money on were not divided into men and women, old and young, and she did not have a harem. It was a stage relationship. When she broke up, she might abuse men.
At Harry and Ginny's wedding, as they were exchanging rings and kissing, Voldemort's mark appeared in the sky. Harry had wanted Ginny to hide and go check it out himself, but she insisted on going with him, and Hermione was eventually persuaded to join them. After their marriage, they had three children: James, Albus, and Lily. The family lived in a small house next to Hogwarts School of Witchcraft and Wizardry, living an ordinary and happy life. They often returned to Hogwarts to reminisce with their friends. However, the world was not completely out of darkness. On one occasion, Harry received a letter informing him that his mission had not been completed and that he had to return to Hogwarts School of Witchcraft and Wizardry. Back at school, Harry found many strange things, such as missing students, stolen magical items, and even people being killed. Harry realized that Voldemort had something to do with these events, and he and his friends decided to fight Voldemort again. With their magic and wisdom, they successfully defeated Voldemort and sealed him in the basement of Hogwarts. Although they had completed their mission, they understood that this was just a new beginning. They had to continue to protect the peace and security of the magical world. Harry and Ginny decided to return to their hometown to start a new life. They would continue to provide assistance to those in need and work hard for the peace and beauty of the Wizarding world. Harry Potter and the Goblet of Fire was not enough. Everyone, please click to read the novel!
He recommended a few novels. Yang Baniang, an ancient romance novel written by Zi 14. The female protagonist was reborn as Yang Baniang. She did not ask for the Yang family to be great and heroic, but only for everyone to be safe. The style of writing was cheerful, and the male lead was suspected to be silly and sweet with small eyes. There were no top-notch characters, the plot was light and funny, the characters were lively, and there was family warmth. The author's style of writing was relaxed and warm, and his words were light. It was a good relaxation product. Four stars recommended. 'The Thief Army' was a fantasy military war novel written by a retired soldier. The new book was about the era of the Mutated Empire to the beginning of the Sui Dynasty. The protagonist, Yang Shuang, took in bandits and barbarians. An old book was recommended as a new book by Feng. It felt good and he could read it slowly. The Heavenly King of the Entertainment Industry was an urban novel written by Yang Luchan. After the male lead, Fast Man, debuted, he was granted the title of a star by the system. There were many entertainment plots. Although it has been completed, it carries the memories of the author's fans. Korean and Chinese entertainment fans can watch it. " Traversing the Early Tang Dynasty and Starting from the Rebellion " was a historical novel written by Qi Jin. The male protagonist had transmigrated into Li Chengqian. He thought that Tianhu had rebelled in advance at the beginning of the game. His perspective was unique and the plot was reasonable. I'm Not a Mixed Blood After Mastering the Eight Wondrous Skills, a light novel written by Fat Orange Who Can't Eat Enough. The male protagonist had transmigrated to the Dragon World with eight unique skills and a large number of second settings, based on the previous three settings. <a href="/?from=ask_words" style="color:red" target="_blank">Read more exciting novels for free</a>
I'm not sure what you need. If you want to write data to a txt-file using your Python programming, you can use the file_put_contents () function, which accepts two parameters: the file name and the contents to be written. If the file doesn't exist, this function will create the file; if the file exists, the contents will be written over by default, but you can also use the third argument to use the constant file_appard to complete the additional write. For example: ```php $data ="This is the content to be written into the txt-file"; $filename = "test.txt"; //Write directly (will erase the original content) // file_put_contents($filename, $data); //add write file_put_contents($filename, $data, FILE_APPEND); ``` You can also use the fopen (), fwrite (), and fclose () functions to write, for example: ```php $data ="This is the content to be written into the txt-file"; $filename = "test.txt"; $fp = fopen($filename, 'w+'); if ($fp) { fwrite($fp, $data); fclose($fp); } else { echo "Failed to open file"; } ``` Here, the 'w +' mode was reset to read and write. If the file did not exist, it would be created. If it did exist, it would be written after clearing the contents. If you want to add more data, you can use 'a' or 'a +' mode. In addition, if you want to generate a txt file by date and write data, you can refer to the following example (assuming you use the XP framework, the following is similar to the implementation logic): ```php function writeTxt($path, $data) { $date = date("Y-m-d", time()); //Project path, check if it exists, create if it doesn't $lujing = "./ ". $path; if (! is_dir($lujing)) { mkdir($lujing, 0777, true); } //check if the file exists, if it doesn't exist, create it. $TxtFileName = "./ ". $path. "/". $date. ".txt"; //Open the specified file in read-write mode. If the file does not exist, create it if (file_exists($TxtFileName)) { //exist, add write content file_put_contents($TxtFileName, $data. "\n", FILE_APPEND); } else { //does not exist, create and write if (($TxtRes = fopen($TxtFileName, "w+")) === FALSE) { exit(); } if (! fwrite($TxtRes, $data. "//Write information to file fclose($TxtRes); exit(); } fclose ($TxtRes);//Close pointer } } ``` If you want to read the contents of a txt-file, you can use the file_get_contents () function (above php5, the return value is a string), the file () function (the return value is an array, each unit in the array is a corresponding line in the file, including the newline), the readfile () function (directly output to the buffer, no echo is needed, the return value is the number of characters read from the file), and so on. For example: ```php //use file_get_contents to read $content = file_get_contents('test.txt'); echo $content; //use the file function to read $lines = file('test.txt'); foreach ($lines as $line) { echo $line; } //use readfile to read readfile('test.txt'); ``` <a href="/?from=ask_words" style="color:red" target="_blank">Read more exciting novels for free</a>