Posts

Showing posts with the label Chatbot

Python (Level-3): Data Types

Image
Important Primitive Data Types. Python provides a wide variety of primitive data types.  Among them, data types such as List, Tuple, Dictionary, and Set are the most essential parts of Python. - String,  List, Tuple, Dictionary, and Set String(in detail) Let's have a look the string data type in detail 5. Let's take a look at String data type in detail. String data types is really important because chatting is done through words(writing). Let's study followings. - string literals - string formatting - string operations string data type_1 Let's take a closer look at the indexing of strings. string data type_2 Let's take a look at string-related member functions. - It's about a 'class' you haven't learned yet, but... string data type_3 - This is a class-related explanation, but the function has not yet been explained in detail... so it can be a little difficult to understand. Let's remember one thing. - In Python, everything is an object, followe...

Python (Level-1): Introductions

Image
Why learn computer programming? We need to use computers and better to order computers to do something that we want. What is a program. A program is a list of instruction(command) for a computer. What are the limitations of a computer? can only understand simple steps and correct orders only limited space fast but still limited seems to be accurate but is not correct Best way to learn programming. What's the best way to learn programming? I think that you can learn programming languages by making something by yourself . From now on, let's learn the Python language little by little while making a chatbot (chatting software robot).  Python is a great language for building chatbots. You will soon find out why. And You need to practice, practice, and practice. Why Python? Python is not only the most used language today, but also has the advantage of being easy for beginners to learn. Python is more like a language of everyday life than any other language. if 1 in [1, 2, 3, 4]: ...