Python Basics

seo learning python

Python Basics Just to summarise everything Data Types in Python Data Types Example Int age = 10 date = 20 year = 2022 Float weight = 60.5 String name = “Vishal” output = “Vishal’s age” movie = ‘Brahmastra’ Boolean is_it_day = True lights = False List all_subjects = [“English”, “Hindi”, “Maths”, “Science”] print(all_subjects[1]) Output Hindi […]